Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- EdmType.cs
- EntityContainerEntitySet.cs
- NativeWindow.cs
- BitmapCacheBrush.cs
- XamlToRtfWriter.cs
- CurrentChangedEventManager.cs
- BitmapData.cs
- ListViewCommandEventArgs.cs
- IfJoinedCondition.cs
- MonthChangedEventArgs.cs
- AuthenticationServiceManager.cs
- TimeoutHelper.cs
- BoolExpr.cs
- OutputScope.cs
- MessageDecoder.cs
- ArgumentsParser.cs
- PrintDocument.cs
- XmlWrappingReader.cs
- Deflater.cs
- BaseServiceProvider.cs
- VScrollProperties.cs
- TextEffectCollection.cs
- SAPICategories.cs
- PngBitmapEncoder.cs
- SafeCloseHandleCritical.cs
- CodeGeneratorOptions.cs
- MasterPageBuildProvider.cs
- IgnoreSectionHandler.cs
- VisemeEventArgs.cs
- SequenceNumber.cs
- BaseTemplateParser.cs
- DbProviderFactory.cs
- Brush.cs
- Calendar.cs
- PassportIdentity.cs
- ApplicationId.cs
- DomainUpDown.cs
- EventLogPermission.cs
- SqlDelegatedTransaction.cs
- EventTrigger.cs
- AsymmetricSignatureDeformatter.cs
- ActivityIdHeader.cs
- MsmqInputSessionChannel.cs
- StreamReader.cs
- processwaithandle.cs
- CurrentChangedEventManager.cs
- ObfuscateAssemblyAttribute.cs
- SqlInternalConnectionSmi.cs
- WCFServiceClientProxyGenerator.cs
- SystemIPAddressInformation.cs
- SiteMapNode.cs
- HandlerMappingMemo.cs
- Empty.cs
- EntityContainerEmitter.cs
- DataIdProcessor.cs
- AdornedElementPlaceholder.cs
- ReadContentAsBinaryHelper.cs
- __FastResourceComparer.cs
- ToolStripGrip.cs
- DataGridTextBox.cs
- WindowsPrincipal.cs
- PaperSource.cs
- TypeSystem.cs
- SystemIPInterfaceProperties.cs
- BaseInfoTable.cs
- SqlCacheDependency.cs
- login.cs
- ObjectDataSourceMethodEventArgs.cs
- IndependentAnimationStorage.cs
- ConfigurationSectionHelper.cs
- PropertyManager.cs
- SafeBitVector32.cs
- ToolStripRendererSwitcher.cs
- CqlParserHelpers.cs
- CodePageEncoding.cs
- Constants.cs
- TraceLevelStore.cs
- TemplateControlBuildProvider.cs
- LingerOption.cs
- Control.cs
- SystemFonts.cs
- FormatSettings.cs
- EditableRegion.cs
- Matrix3DStack.cs
- PathStreamGeometryContext.cs
- PreviousTrackingServiceAttribute.cs
- X509RecipientCertificateServiceElement.cs
- RequestResponse.cs
- SqlUserDefinedAggregateAttribute.cs
- TextAnchor.cs
- TriggerCollection.cs
- BackStopAuthenticationModule.cs
- XmlText.cs
- UnsettableComboBox.cs
- RootDesignerSerializerAttribute.cs
- SpAudioStreamWrapper.cs
- XsltInput.cs
- QuotedPrintableStream.cs
- SoapUnknownHeader.cs
- PageThemeCodeDomTreeGenerator.cs