Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; ////// [ 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; ///Represents an item in the ///. /// public DataListItem(int itemIndex, ListItemType itemType) { this.itemIndex = itemIndex; this.itemType = itemType; } ///Initializes a new instance of the ///class. /// public virtual object DataItem { get { return dataItem; } set { dataItem = value; } } ///Represents an item in the ///. /// public virtual int ItemIndex { get { return itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual ListItemType ItemType { get { return itemType; } } ///Indicates the type of the item in the ///. /// 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; } ////// 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())); } } } ///Displays a ///on the client. /// /// 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. // //----------------------------------------------------------------------------- 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; ////// [ 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; ///Represents an item in the ///. /// public DataListItem(int itemIndex, ListItemType itemType) { this.itemIndex = itemIndex; this.itemType = itemType; } ///Initializes a new instance of the ///class. /// public virtual object DataItem { get { return dataItem; } set { dataItem = value; } } ///Represents an item in the ///. /// public virtual int ItemIndex { get { return itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual ListItemType ItemType { get { return itemType; } } ///Indicates the type of the item in the ///. /// 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; } ////// 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())); } } } ///Displays a ///on the client. /// /// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TreeNode.cs
- PageCache.cs
- MimeFormImporter.cs
- SizeChangedInfo.cs
- RectKeyFrameCollection.cs
- RoleManagerModule.cs
- TypeSemantics.cs
- ChangeBlockUndoRecord.cs
- CodeLinePragma.cs
- TraceContextRecord.cs
- XPathItem.cs
- EventDescriptorCollection.cs
- QuaternionIndependentAnimationStorage.cs
- CodeSubDirectoriesCollection.cs
- ImageMapEventArgs.cs
- Rect.cs
- GroupBox.cs
- DesignerRegion.cs
- PkcsUtils.cs
- _Semaphore.cs
- CustomErrorCollection.cs
- Rect3DValueSerializer.cs
- GetUserPreferenceRequest.cs
- Constants.cs
- TraceSection.cs
- SiteMapNodeItem.cs
- HtmlObjectListAdapter.cs
- documentation.cs
- ProgressBar.cs
- DPAPIProtectedConfigurationProvider.cs
- Package.cs
- PropertyMapper.cs
- ObjectCacheSettings.cs
- BamlBinaryWriter.cs
- TextChange.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- AttributeEmitter.cs
- Point3DCollectionConverter.cs
- DispatcherEventArgs.cs
- Privilege.cs
- DataGridTable.cs
- ParallelTimeline.cs
- SHA256.cs
- LinkTarget.cs
- CodeCastExpression.cs
- SelectionListComponentEditor.cs
- StylusSystemGestureEventArgs.cs
- IndependentAnimationStorage.cs
- DesignerActionService.cs
- DataSourceViewSchemaConverter.cs
- OutputCacheSection.cs
- BindingsCollection.cs
- ExpressionTextBoxAutomationPeer.cs
- TextRange.cs
- OuterGlowBitmapEffect.cs
- XmlUtf8RawTextWriter.cs
- MILUtilities.cs
- XmlBinaryWriter.cs
- IIS7WorkerRequest.cs
- TableRowCollection.cs
- EnumerableRowCollectionExtensions.cs
- StringHelper.cs
- RoleService.cs
- QueryContext.cs
- DrawingImage.cs
- sortedlist.cs
- fixedPageContentExtractor.cs
- XmlUTF8TextReader.cs
- PolyLineSegmentFigureLogic.cs
- UriExt.cs
- InfiniteTimeSpanConverter.cs
- Run.cs
- TextureBrush.cs
- GetIsBrowserClientRequest.cs
- PhotoPrintingIntent.cs
- ClientRoleProvider.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- HttpCachePolicy.cs
- WebRequestModulesSection.cs
- SlotInfo.cs
- HostingPreferredMapPath.cs
- AssociationSet.cs
- DocumentSchemaValidator.cs
- SectionVisual.cs
- ButtonChrome.cs
- RequestQueue.cs
- ProcessHost.cs
- ConnectionStringSettings.cs
- PageThemeCodeDomTreeGenerator.cs
- ClipboardData.cs
- OutputCacheModule.cs
- PromptStyle.cs
- FormsAuthenticationUserCollection.cs
- HtmlTitle.cs
- LineGeometry.cs
- TextEditorThreadLocalStore.cs
- WebEvents.cs
- DataServiceKeyAttribute.cs
- newinstructionaction.cs
- DockingAttribute.cs