Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlGenericControl.cs / 1305376 / 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; /* * A control representing an unknown Html tag. */ ////// [ConstructorNeedsTag(true)] 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
- LinearGradientBrush.cs
- WebBaseEventKeyComparer.cs
- _SSPIWrapper.cs
- GlyphRun.cs
- UpdateTracker.cs
- FileAuthorizationModule.cs
- ResourceExpressionEditor.cs
- ExceptionValidationRule.cs
- BinaryExpression.cs
- Symbol.cs
- ChameleonKey.cs
- Config.cs
- CommonGetThemePartSize.cs
- FastEncoderStatics.cs
- DateTimePicker.cs
- SmtpFailedRecipientException.cs
- SoapClientProtocol.cs
- CompiledQueryCacheKey.cs
- XmlSchemaAny.cs
- XmlStreamStore.cs
- ProcessInfo.cs
- CollectionViewProxy.cs
- SecurityKeyIdentifier.cs
- BindableTemplateBuilder.cs
- FullTextState.cs
- InvokeGenerator.cs
- SafeNativeMethodsOther.cs
- SafeSecurityHandles.cs
- XmlDigitalSignatureProcessor.cs
- ColumnClickEvent.cs
- CaseInsensitiveOrdinalStringComparer.cs
- _ListenerResponseStream.cs
- TableLayoutPanel.cs
- XmlHierarchicalDataSourceView.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- DataGridDetailsPresenterAutomationPeer.cs
- XXXInfos.cs
- xamlnodes.cs
- Queue.cs
- DataGridHeaderBorder.cs
- Privilege.cs
- TrustLevel.cs
- AttributeCollection.cs
- IntPtr.cs
- SendMailErrorEventArgs.cs
- NamespaceMapping.cs
- MatrixCamera.cs
- CompModSwitches.cs
- RIPEMD160.cs
- IdentifierCollection.cs
- ModuleConfigurationInfo.cs
- SystemColors.cs
- DataGridColumnHeadersPresenter.cs
- SQLBinaryStorage.cs
- CaseExpr.cs
- CodeIdentifiers.cs
- QilReference.cs
- AbsoluteQuery.cs
- CommandID.cs
- X509ChainElement.cs
- StorageConditionPropertyMapping.cs
- ConfigXmlElement.cs
- ModuleBuilderData.cs
- DataConnectionHelper.cs
- Utils.cs
- SqlDeflator.cs
- RequestCachePolicy.cs
- WebConfigurationHost.cs
- XmlWriterDelegator.cs
- MemoryFailPoint.cs
- FontFamily.cs
- FixedTextBuilder.cs
- commandenforcer.cs
- DrawToolTipEventArgs.cs
- BorderGapMaskConverter.cs
- SafePEFileHandle.cs
- CategoryGridEntry.cs
- GetWinFXPath.cs
- _TimerThread.cs
- LinqDataSourceDisposeEventArgs.cs
- ListViewGroupConverter.cs
- DataGrid.cs
- ObjectTypeMapping.cs
- _BaseOverlappedAsyncResult.cs
- UrlMappingCollection.cs
- HMACRIPEMD160.cs
- DataMisalignedException.cs
- PeerResolverElement.cs
- MarkupExtensionReturnTypeAttribute.cs
- Expression.cs
- RtType.cs
- TabControl.cs
- XmlChildNodes.cs
- ToolStripSplitStackLayout.cs
- MobileCapabilities.cs
- CurrencyWrapper.cs
- PeerCollaborationPermission.cs
- ObjectToModelValueConverter.cs
- SerialPort.cs
- EncodingTable.cs