Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlGenericControl.cs / 1 / HtmlGenericControl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlGenericControl.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Web.UI; using System.Security.Permissions; /* * A control representing an unknown Html tag. */ ////// [ConstructorNeedsTag(true)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HtmlGenericControl : HtmlContainerControl { /* * Creates a new WebControl */ ////// The ///class defines the methods, /// properties, and events for all HTML Server control tags not represented by a /// specific class. /// /// public HtmlGenericControl() : this("span") { } /* * Creates a new HtmlGenericControl */ ///Initializes a new instance of the ///class with default /// values. /// public HtmlGenericControl(string tag) { if (tag == null) tag = String.Empty; _tagName = tag; } /* * Property to get name of tag. */ ///Initializes a new instance of the ///class using the specified /// string. /// [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] new public string TagName { get { return _tagName;} set {_tagName = value;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the element name of a tag that contains a /// runat="server" attribute/value pair. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlGenericControl.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Web.UI; using System.Security.Permissions; /* * A control representing an unknown Html tag. */ ////// [ConstructorNeedsTag(true)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HtmlGenericControl : HtmlContainerControl { /* * Creates a new WebControl */ ////// The ///class defines the methods, /// properties, and events for all HTML Server control tags not represented by a /// specific class. /// /// public HtmlGenericControl() : this("span") { } /* * Creates a new HtmlGenericControl */ ///Initializes a new instance of the ///class with default /// values. /// public HtmlGenericControl(string tag) { if (tag == null) tag = String.Empty; _tagName = tag; } /* * Property to get name of tag. */ ///Initializes a new instance of the ///class using the specified /// string. /// [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] new public string TagName { get { return _tagName;} set {_tagName = value;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the element name of a tag that contains a /// runat="server" attribute/value pair. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _SecureChannel.cs
- DecimalAnimationBase.cs
- SourceLocationProvider.cs
- FillRuleValidation.cs
- EnumerableWrapperWeakToStrong.cs
- Panel.cs
- GridItem.cs
- DataServiceContext.cs
- ReadOnlyHierarchicalDataSourceView.cs
- DefaultMemberAttribute.cs
- TreeWalkHelper.cs
- ImmutableObjectAttribute.cs
- _HeaderInfo.cs
- DynamicMethod.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- BridgeDataReader.cs
- DataGridViewLayoutData.cs
- HierarchicalDataSourceDesigner.cs
- ConfigurationLocation.cs
- RuleSet.cs
- WorkflowShape.cs
- IBuiltInEvidence.cs
- loginstatus.cs
- XmlTextWriter.cs
- ObjectDataSource.cs
- XmlQueryOutput.cs
- SettingsPropertyValueCollection.cs
- ShaperBuffers.cs
- SymbolEqualComparer.cs
- WindowsSysHeader.cs
- EventMap.cs
- ReachSerializerAsync.cs
- PeerTransportElement.cs
- BoundColumn.cs
- TypeLibConverter.cs
- BindingValueChangedEventArgs.cs
- ClonableStack.cs
- HostExecutionContextManager.cs
- IconHelper.cs
- PopupEventArgs.cs
- MetadataArtifactLoaderResource.cs
- EventHandlerList.cs
- PassportAuthenticationEventArgs.cs
- BinaryCommonClasses.cs
- Debug.cs
- MustUnderstandBehavior.cs
- GraphicsPathIterator.cs
- PackWebResponse.cs
- ToggleButtonAutomationPeer.cs
- DefaultObjectMappingItemCollection.cs
- ToolboxDataAttribute.cs
- DataListItemCollection.cs
- RemoteWebConfigurationHost.cs
- PeerReferralPolicy.cs
- ProcessModelSection.cs
- DataTableExtensions.cs
- PageFunction.cs
- StateFinalizationActivity.cs
- Int64Converter.cs
- ScalarOps.cs
- SystemDropShadowChrome.cs
- MonthCalendar.cs
- OdbcCommand.cs
- XPathNavigator.cs
- SqlConnectionManager.cs
- Number.cs
- itemelement.cs
- BuildProvider.cs
- SizeLimitedCache.cs
- MetafileEditor.cs
- CriticalHandle.cs
- XsdDateTime.cs
- SerialPort.cs
- UrlAuthFailureHandler.cs
- elementinformation.cs
- StringStorage.cs
- ThreadStartException.cs
- ListControlConvertEventArgs.cs
- XmlObjectSerializerContext.cs
- TableLayoutSettings.cs
- EnumerableCollectionView.cs
- SignalGate.cs
- CompiledIdentityConstraint.cs
- Identity.cs
- BulletedList.cs
- SystemResourceHost.cs
- WindowsFormsLinkLabel.cs
- BaseDataBoundControl.cs
- ResourceManagerWrapper.cs
- BitmapFrameEncode.cs
- _AutoWebProxyScriptEngine.cs
- ExpressionVisitor.cs
- OptimalBreakSession.cs
- WebEncodingValidatorAttribute.cs
- SettingsProviderCollection.cs
- JobInputBins.cs
- ElementsClipboardData.cs
- XmlCharCheckingWriter.cs
- InvalidOperationException.cs
- PolicyException.cs