Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataListItem.cs / 1 / DataListItem.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Web.UI;
using System.Security.Permissions;
///
/// Represents an item in the .
///
[
ToolboxItem(false)
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class DataListItem : WebControl, IDataItemContainer {
private int itemIndex;
private ListItemType itemType;
private object dataItem;
///
/// Initializes a new instance of the class.
///
public DataListItem(int itemIndex, ListItemType itemType) {
this.itemIndex = itemIndex;
this.itemType = itemType;
}
///
/// Represents an item in the .
///
public virtual object DataItem {
get {
return dataItem;
}
set {
dataItem = value;
}
}
///
/// Indicates the index of the item in the . This property is
/// read-only.
///
public virtual int ItemIndex {
get {
return itemIndex;
}
}
///
/// Indicates the type of the item in the .
///
public virtual ListItemType ItemType {
get {
return itemType;
}
}
///
///
protected override Style CreateControlStyle() {
return new TableItemStyle();
}
///
///
///
protected override bool OnBubbleEvent(object source, EventArgs e) {
if (e is CommandEventArgs) {
DataListCommandEventArgs args = new DataListCommandEventArgs(this, source, (CommandEventArgs)e);
RaiseBubbleEvent(this, args);
return true;
}
return false;
}
///
/// Displays a on the client.
///
public virtual void RenderItem(HtmlTextWriter writer, bool extractRows, bool tableLayout) {
HttpContext con = Context;
if ((con != null) && con.TraceIsEnabled) {
int presize = con.Response.GetBufferedLength();
RenderItemInternal(writer, extractRows, tableLayout);
int postsize = con.Response.GetBufferedLength();
con.Trace.AddControlSize(UniqueID, postsize - presize);
}
else
RenderItemInternal(writer, extractRows, tableLayout);
}
private void RenderItemInternal(HtmlTextWriter writer, bool extractRows, bool tableLayout) {
if (extractRows == false) {
if (tableLayout) {
// in table mode, style information has gone on the containing TD
RenderContents(writer);
}
else {
// in non-table mode, the item itself is responsible for putting
// out the style information
RenderControl(writer);
}
}
else {
IEnumerator controlEnum = this.Controls.GetEnumerator();
Table templateTable = null;
bool hasControls = false;
while (controlEnum.MoveNext()) {
hasControls = true;
Control c = (Control)controlEnum.Current;
if (c is Table) {
templateTable = (Table)c;
break;
}
}
if (templateTable != null) {
IEnumerator rowEnum = templateTable.Rows.GetEnumerator();
while (rowEnum.MoveNext()) {
TableRow r = (TableRow)rowEnum.Current;
r.RenderControl(writer);
}
}
else if (hasControls) {
// there was a template, since there were controls but
// none of them was a table... so throw an exception here
throw new HttpException(SR.GetString(SR.DataList_TemplateTableNotFound,
Parent.ID, itemType.ToString()));
}
}
}
///
///
///
protected internal virtual void SetItemType(ListItemType itemType) {
this.itemType = itemType;
}
///
///
///
object IDataItemContainer.DataItem {
get {
return DataItem;
}
}
int IDataItemContainer.DataItemIndex {
get {
return ItemIndex;
}
}
int IDataItemContainer.DisplayIndex {
get {
return ItemIndex;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CLSCompliantAttribute.cs
- Substitution.cs
- BufferedWebEventProvider.cs
- WindowsEditBoxRange.cs
- ProxySimple.cs
- OrderedDictionary.cs
- HyperLinkDesigner.cs
- StructuralObject.cs
- ReflectionTypeLoadException.cs
- EnvironmentPermission.cs
- ICspAsymmetricAlgorithm.cs
- DbSourceParameterCollection.cs
- InternalTypeHelper.cs
- WebWorkflowRole.cs
- InputQueue.cs
- SiteOfOriginContainer.cs
- ConfigurationValue.cs
- IntSecurity.cs
- GlyphsSerializer.cs
- XmlCollation.cs
- ProcessInfo.cs
- OutputCacheProfileCollection.cs
- XmlEncoding.cs
- X509ChainPolicy.cs
- MultiView.cs
- HttpHandlersSection.cs
- NamespaceList.cs
- QueryHandler.cs
- SocketException.cs
- DataGridViewLayoutData.cs
- DataGridHelper.cs
- XmlUtil.cs
- IsolatedStorageFilePermission.cs
- StructuredTypeEmitter.cs
- ImportOptions.cs
- CheckBoxBaseAdapter.cs
- RadioButtonRenderer.cs
- TimeoutValidationAttribute.cs
- EdmFunctionAttribute.cs
- PrintControllerWithStatusDialog.cs
- BindingExpression.cs
- PersonalizationStateInfoCollection.cs
- QilXmlWriter.cs
- HttpFileCollection.cs
- RemotingConfigParser.cs
- ManagementPath.cs
- QueryCursorEventArgs.cs
- Transform3DGroup.cs
- ExpandCollapseProviderWrapper.cs
- TemplateComponentConnector.cs
- Debugger.cs
- _ContextAwareResult.cs
- CompositeClientFormatter.cs
- ServiceBehaviorElement.cs
- KeyValueInternalCollection.cs
- SemaphoreSecurity.cs
- RelatedCurrencyManager.cs
- OdbcEnvironment.cs
- StreamWriter.cs
- FontFamily.cs
- PlainXmlSerializer.cs
- ResizeGrip.cs
- ElementProxy.cs
- ClientRolePrincipal.cs
- mediaclock.cs
- _TimerThread.cs
- ListViewCancelEventArgs.cs
- Script.cs
- AnnotationAuthorChangedEventArgs.cs
- OleDbEnumerator.cs
- PopOutPanel.cs
- ButtonBase.cs
- ProcessThreadCollection.cs
- XsltSettings.cs
- ThrowHelper.cs
- BezierSegment.cs
- TableRow.cs
- OdbcTransaction.cs
- SoapFormatExtensions.cs
- TagPrefixCollection.cs
- KnownTypesProvider.cs
- SqlProcedureAttribute.cs
- Reference.cs
- NamespaceTable.cs
- PageCache.cs
- AttributeProviderAttribute.cs
- LinqDataView.cs
- XpsS0ValidatingLoader.cs
- DelegatingTypeDescriptionProvider.cs
- List.cs
- FormViewCommandEventArgs.cs
- StylusPointProperty.cs
- RequestCacheEntry.cs
- DataSourceCacheDurationConverter.cs
- CellParaClient.cs
- WriteableBitmap.cs
- TextViewElement.cs
- DataControlCommands.cs
- WeakHashtable.cs
- FunctionDetailsReader.cs