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
- MessageQueueKey.cs
- OleDbConnectionFactory.cs
- AppDomainAttributes.cs
- XMLDiffLoader.cs
- ConnectionManagementElementCollection.cs
- InternalPermissions.cs
- ThreadNeutralSemaphore.cs
- ButtonRenderer.cs
- Utils.cs
- XmlProcessingInstruction.cs
- EventHandlingScope.cs
- SetStoryboardSpeedRatio.cs
- SortQuery.cs
- dataprotectionpermissionattribute.cs
- BitmapEffectrendercontext.cs
- JsonServiceDocumentSerializer.cs
- HttpCacheParams.cs
- XmlDocumentFragment.cs
- _Semaphore.cs
- XmlSerializerVersionAttribute.cs
- SHA512CryptoServiceProvider.cs
- COAUTHINFO.cs
- RemoteWebConfigurationHostServer.cs
- MappingMetadataHelper.cs
- CheckBoxList.cs
- SmtpReplyReaderFactory.cs
- RealProxy.cs
- WebOperationContext.cs
- FlowDocumentPaginator.cs
- DnsPermission.cs
- TemplateManager.cs
- SQLString.cs
- SQLGuid.cs
- Directory.cs
- _SecureChannel.cs
- DetailsViewDeletedEventArgs.cs
- httpapplicationstate.cs
- DataGridHeaderBorder.cs
- WindowsScroll.cs
- StateRuntime.cs
- DecimalConstantAttribute.cs
- DefaultParameterValueAttribute.cs
- WindowShowOrOpenTracker.cs
- PinnedBufferMemoryStream.cs
- LabelExpression.cs
- DeclarativeCatalogPart.cs
- SQLRoleProvider.cs
- MeasureItemEvent.cs
- Int32Storage.cs
- CollectionBase.cs
- Vector.cs
- ChooseAction.cs
- BitVec.cs
- BuiltInExpr.cs
- TabletDeviceInfo.cs
- CodeBlockBuilder.cs
- WinFormsSecurity.cs
- OleDbTransaction.cs
- AuthenticatingEventArgs.cs
- Control.cs
- OrderedHashRepartitionEnumerator.cs
- DelayedRegex.cs
- PropertyDescriptorCollection.cs
- GeometryCollection.cs
- UrlAuthFailedErrorFormatter.cs
- SqlCommandBuilder.cs
- PropertyValueChangedEvent.cs
- AtomicFile.cs
- RectIndependentAnimationStorage.cs
- GB18030Encoding.cs
- Renderer.cs
- TextRunCache.cs
- FixedSOMTableRow.cs
- XslAst.cs
- Validator.cs
- DataBoundControlHelper.cs
- ItemMap.cs
- DbParameterHelper.cs
- BasicHttpBindingCollectionElement.cs
- XamlParser.cs
- COMException.cs
- AppModelKnownContentFactory.cs
- CheckBox.cs
- XPathQilFactory.cs
- SHA256.cs
- Reference.cs
- ActivityMetadata.cs
- HttpMethodConstraint.cs
- ObjectConverter.cs
- ToolStripOverflowButton.cs
- TextFormatterImp.cs
- OleDbTransaction.cs
- EnterpriseServicesHelper.cs
- EntityClassGenerator.cs
- newinstructionaction.cs
- CodeObject.cs
- ParallelTimeline.cs
- BidPrivateBase.cs
- TimerEventSubscription.cs
- FastEncoderWindow.cs