Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / CompositeDataBoundControl.cs / 2 / CompositeDataBoundControl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class CompositeDataBoundControl : DataBoundControl, INamingContainer { internal const string ItemCountViewStateKey = "_!ItemCount"; public override ControlCollection Controls { get { EnsureChildControls(); return base.Controls; } } ////// Overriden by DataBoundControl to determine if the control should /// recreate its control hierarchy based on values in view state. /// If the control hierarchy should be created, i.e. view state does /// exist, it calls CreateChildControls with a dummy (empty) data source /// which is usable for enumeration purposes only. /// protected internal override void CreateChildControls() { Controls.Clear(); object controlCount = ViewState[ItemCountViewStateKey]; if (controlCount == null && RequiresDataBinding) { EnsureDataBound(); } if (controlCount != null && ((int)controlCount) != -1) { DummyDataSource dummyDataSource = new DummyDataSource((int)controlCount); CreateChildControls(dummyDataSource, false); ClearChildViewState(); } } ////// Performs the work of creating the control hierarchy based on a data source. /// When dataBinding is true, the specified data source contains real /// data, and the data is supposed to be pushed into the UI. /// When dataBinding is false, the specified data source is a dummy data /// source, that allows enumerating the right number of items, but the items /// themselves are null and do not contain data. In this case, the recreated /// control hierarchy reinitializes its state from view state. /// It enables a DataBoundControl to encapsulate the logic of creating its /// control hierarchy in both modes into a single code path. /// /// /// The data source to be used to enumerate items. /// /// /// Whether the method has been called from DataBind or not. /// ////// The number of items created based on the data source. Put another way, its /// the number of items enumerated from the data source. /// protected abstract int CreateChildControls(IEnumerable dataSource, bool dataBinding); ////// Overriden by DataBoundControl to use its properties to determine the real /// data source that the control should bind to. It then clears the existing /// control hierarchy, and calls createChildControls to create a new control /// hierarchy based on the resolved data source. /// The implementation resolves various data source related properties to /// arrive at the appropriate IEnumerable implementation to use as the real /// data source. /// When resolving data sources, the DataSourceControlID takes highest precedence. /// In this mode, DataMember is used to access the appropriate list from the /// DataControl. /// If DataSourceControlID is not set, the value of the DataSource property is used. /// In this second alternative, DataMember is used to extract the appropriate /// list if the control has been handed an IListSource as a data source. /// protected internal override void PerformDataBinding(IEnumerable data) { base.PerformDataBinding(data); Controls.Clear(); ClearChildViewState(); TrackViewState(); int controlCount = CreateChildControls(data, true); ChildControlsCreated = true; ViewState[ItemCountViewStateKey] = controlCount; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class CompositeDataBoundControl : DataBoundControl, INamingContainer { internal const string ItemCountViewStateKey = "_!ItemCount"; public override ControlCollection Controls { get { EnsureChildControls(); return base.Controls; } } ////// Overriden by DataBoundControl to determine if the control should /// recreate its control hierarchy based on values in view state. /// If the control hierarchy should be created, i.e. view state does /// exist, it calls CreateChildControls with a dummy (empty) data source /// which is usable for enumeration purposes only. /// protected internal override void CreateChildControls() { Controls.Clear(); object controlCount = ViewState[ItemCountViewStateKey]; if (controlCount == null && RequiresDataBinding) { EnsureDataBound(); } if (controlCount != null && ((int)controlCount) != -1) { DummyDataSource dummyDataSource = new DummyDataSource((int)controlCount); CreateChildControls(dummyDataSource, false); ClearChildViewState(); } } ////// Performs the work of creating the control hierarchy based on a data source. /// When dataBinding is true, the specified data source contains real /// data, and the data is supposed to be pushed into the UI. /// When dataBinding is false, the specified data source is a dummy data /// source, that allows enumerating the right number of items, but the items /// themselves are null and do not contain data. In this case, the recreated /// control hierarchy reinitializes its state from view state. /// It enables a DataBoundControl to encapsulate the logic of creating its /// control hierarchy in both modes into a single code path. /// /// /// The data source to be used to enumerate items. /// /// /// Whether the method has been called from DataBind or not. /// ////// The number of items created based on the data source. Put another way, its /// the number of items enumerated from the data source. /// protected abstract int CreateChildControls(IEnumerable dataSource, bool dataBinding); ////// Overriden by DataBoundControl to use its properties to determine the real /// data source that the control should bind to. It then clears the existing /// control hierarchy, and calls createChildControls to create a new control /// hierarchy based on the resolved data source. /// The implementation resolves various data source related properties to /// arrive at the appropriate IEnumerable implementation to use as the real /// data source. /// When resolving data sources, the DataSourceControlID takes highest precedence. /// In this mode, DataMember is used to access the appropriate list from the /// DataControl. /// If DataSourceControlID is not set, the value of the DataSource property is used. /// In this second alternative, DataMember is used to extract the appropriate /// list if the control has been handed an IListSource as a data source. /// protected internal override void PerformDataBinding(IEnumerable data) { base.PerformDataBinding(data); Controls.Clear(); ClearChildViewState(); TrackViewState(); int controlCount = CreateChildControls(data, true); ChildControlsCreated = true; ViewState[ItemCountViewStateKey] = controlCount; } } } // 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
- ListViewItemCollectionEditor.cs
- ReliableChannelListener.cs
- XmlParserContext.cs
- _SecureChannel.cs
- SystemTcpStatistics.cs
- Point4D.cs
- NetworkAddressChange.cs
- AtomMaterializerLog.cs
- TextEditorDragDrop.cs
- MouseButton.cs
- HandlerBase.cs
- GroupAggregateExpr.cs
- SQLByte.cs
- EventLog.cs
- MaskInputRejectedEventArgs.cs
- PixelFormat.cs
- ProgressBar.cs
- TypeDescriptorFilterService.cs
- PrimaryKeyTypeConverter.cs
- ApplicationHost.cs
- SignedXml.cs
- Rule.cs
- KeysConverter.cs
- BufferBuilder.cs
- RegionIterator.cs
- FunctionDescription.cs
- HostVisual.cs
- InstanceData.cs
- Tokenizer.cs
- LinkClickEvent.cs
- GCHandleCookieTable.cs
- ValueConversionAttribute.cs
- ComboBox.cs
- ResourceProperty.cs
- ToolboxItem.cs
- TextBoxDesigner.cs
- PreloadedPackages.cs
- CapabilitiesSection.cs
- QueryAsyncResult.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ToolboxDataAttribute.cs
- SelectionEditor.cs
- TagPrefixAttribute.cs
- UInt64Storage.cs
- RotateTransform3D.cs
- XpsPackagingException.cs
- DataGridViewComboBoxCell.cs
- X509PeerCertificateAuthentication.cs
- TimeZoneNotFoundException.cs
- EntitySet.cs
- PointLightBase.cs
- UnsafeNativeMethods.cs
- ParallelTimeline.cs
- Code.cs
- TypeUnloadedException.cs
- BindingExpressionBase.cs
- LiteralTextParser.cs
- PeerFlooder.cs
- SecurityChannelFaultConverter.cs
- MatrixTransform.cs
- ButtonBase.cs
- unitconverter.cs
- ToolboxItemImageConverter.cs
- Highlights.cs
- CqlErrorHelper.cs
- GradientStopCollection.cs
- nulltextcontainer.cs
- TreeNodeMouseHoverEvent.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- ResourceDisplayNameAttribute.cs
- SqlGenerator.cs
- SoapReflectionImporter.cs
- EventPrivateKey.cs
- WebPartDisplayModeCancelEventArgs.cs
- StreamWithDictionary.cs
- HtmlInputFile.cs
- EventArgs.cs
- TransportDefaults.cs
- ToolStripSystemRenderer.cs
- LazyTextWriterCreator.cs
- FileSecurity.cs
- ProcessModelSection.cs
- DataObjectSettingDataEventArgs.cs
- CompilerTypeWithParams.cs
- CodeCommentStatementCollection.cs
- TableDetailsRow.cs
- View.cs
- ChangeBlockUndoRecord.cs
- OracleTransaction.cs
- BookmarkManager.cs
- XPathNodeInfoAtom.cs
- LinqDataView.cs
- Binding.cs
- SchemaEntity.cs
- Command.cs
- ObjectDataSourceEventArgs.cs
- StorageAssociationSetMapping.cs
- DocumentManager.cs
- ReceiveActivityValidator.cs
- SqlDataSourceCommandEventArgs.cs