Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / ChildTable.cs / 5 / ChildTable.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
using System.ComponentModel;
using System.Web.UI;
using System.Web.Util;
[
ToolboxItem(false),
SupportsEventValidation,
]
///
///
/// Used by composite controls that are based on a table, that only render
/// their contents.
/// Used to render out an ID attribute representing the parent composite control
/// if an ID is not actually set on this table.
///
internal class ChildTable : Table {
private int _parentLevel;
private string _parentID;
private bool _parentIDSet;
///
internal ChildTable() : this(1) {
}
///
internal ChildTable(int parentLevel) {
Debug.Assert(parentLevel >= 1);
_parentLevel = parentLevel;
_parentIDSet = false;
}
internal ChildTable(string parentID) {
_parentID = parentID;
_parentIDSet = true;
}
///
protected override void AddAttributesToRender(HtmlTextWriter writer) {
base.AddAttributesToRender(writer);
string parentID = _parentID;
if (!_parentIDSet) {
parentID = GetParentID();
}
if (parentID != null) {
writer.AddAttribute(HtmlTextWriterAttribute.Id, parentID);
}
}
///
/// Gets the ClientID of the parent whose ID is supposed to be used in the rendering.
///
private string GetParentID() {
if (ID != null) {
return null;
}
Control parent = this;
for (int i = 0; i < _parentLevel; i++) {
parent = parent.Parent;
if (parent == null) {
break;
}
}
Debug.Assert(parent != null);
if (parent != null) {
string id = parent.ID;
if (!String.IsNullOrEmpty(id)) {
return parent.ClientID;
}
}
return null;
}
}
}
// 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.ComponentModel;
using System.Web.UI;
using System.Web.Util;
[
ToolboxItem(false),
SupportsEventValidation,
]
///
///
/// Used by composite controls that are based on a table, that only render
/// their contents.
/// Used to render out an ID attribute representing the parent composite control
/// if an ID is not actually set on this table.
///
internal class ChildTable : Table {
private int _parentLevel;
private string _parentID;
private bool _parentIDSet;
///
internal ChildTable() : this(1) {
}
///
internal ChildTable(int parentLevel) {
Debug.Assert(parentLevel >= 1);
_parentLevel = parentLevel;
_parentIDSet = false;
}
internal ChildTable(string parentID) {
_parentID = parentID;
_parentIDSet = true;
}
///
protected override void AddAttributesToRender(HtmlTextWriter writer) {
base.AddAttributesToRender(writer);
string parentID = _parentID;
if (!_parentIDSet) {
parentID = GetParentID();
}
if (parentID != null) {
writer.AddAttribute(HtmlTextWriterAttribute.Id, parentID);
}
}
///
/// Gets the ClientID of the parent whose ID is supposed to be used in the rendering.
///
private string GetParentID() {
if (ID != null) {
return null;
}
Control parent = this;
for (int i = 0; i < _parentLevel; i++) {
parent = parent.Parent;
if (parent == null) {
break;
}
}
Debug.Assert(parent != null);
if (parent != null) {
string id = parent.ID;
if (!String.IsNullOrEmpty(id)) {
return parent.ClientID;
}
}
return null;
}
}
}
// 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
- RemoteX509AsymmetricSecurityKey.cs
- ScriptReference.cs
- IResourceProvider.cs
- HttpHandlerAction.cs
- DockPanel.cs
- MessagingDescriptionAttribute.cs
- InvokeFunc.cs
- InternalConfigHost.cs
- ReturnEventArgs.cs
- DataGridColumnCollectionEditor.cs
- WaveHeader.cs
- ConfigurationSection.cs
- Timeline.cs
- ClassImporter.cs
- EventSetter.cs
- CompilationSection.cs
- ConfigurationSection.cs
- EntityContainerRelationshipSetEnd.cs
- SchemaMapping.cs
- SecurityAccessDeniedException.cs
- GACMembershipCondition.cs
- MonthChangedEventArgs.cs
- ToolStripManager.cs
- SyntaxCheck.cs
- OciLobLocator.cs
- ExternalFile.cs
- DLinqTableProvider.cs
- XmlSchemaValidator.cs
- EventLogInformation.cs
- WebBrowserNavigatingEventHandler.cs
- PrintPreviewControl.cs
- XmlBaseWriter.cs
- ColumnResizeAdorner.cs
- UpdateTranslator.cs
- XmlNodeComparer.cs
- ResXResourceReader.cs
- UndirectedGraph.cs
- EntityContainerEmitter.cs
- CompositeFontParser.cs
- SafeWaitHandle.cs
- MsiStyleLogWriter.cs
- EncodedStreamFactory.cs
- TimeZone.cs
- ListViewItemSelectionChangedEvent.cs
- ProtocolProfile.cs
- WindowsProgressbar.cs
- DbSetClause.cs
- OrderByBuilder.cs
- MutexSecurity.cs
- ResolvedKeyFrameEntry.cs
- OleStrCAMarshaler.cs
- EntityDataSourceContainerNameItem.cs
- DelegateArgumentReference.cs
- KeyGestureValueSerializer.cs
- ChainOfDependencies.cs
- XamlPathDataSerializer.cs
- Line.cs
- TargetConverter.cs
- ReceiveErrorHandling.cs
- Int32.cs
- XmlCharCheckingWriter.cs
- Image.cs
- BinaryFormatter.cs
- ConfigurationElement.cs
- SHA1.cs
- RoutedCommand.cs
- SizeAnimationUsingKeyFrames.cs
- DataGridViewComboBoxColumn.cs
- TriggerAction.cs
- ThreadExceptionDialog.cs
- XamlStyleSerializer.cs
- FixedHighlight.cs
- XmlTypeMapping.cs
- ActiveXSerializer.cs
- GridViewPageEventArgs.cs
- AsyncOperationManager.cs
- Stacktrace.cs
- SizeFConverter.cs
- WaitHandleCannotBeOpenedException.cs
- DataSourceXmlSubItemAttribute.cs
- PeerSecurityManager.cs
- SystemFonts.cs
- DetailsViewModeEventArgs.cs
- Drawing.cs
- XmlReflectionMember.cs
- XmlTypeAttribute.cs
- NetMsmqBindingCollectionElement.cs
- RewritingSimplifier.cs
- WindowsFormsSynchronizationContext.cs
- ButtonChrome.cs
- ActiveXHost.cs
- ServicePointManager.cs
- XmlNamespaceManager.cs
- XmlLoader.cs
- ZeroOpNode.cs
- EdmConstants.cs
- ToolStripDropDown.cs
- _ListenerResponseStream.cs
- NamedPipeActivation.cs
- TextRunProperties.cs