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
- AnnotationResource.cs
- ByValueEqualityComparer.cs
- FileStream.cs
- HostedAspNetEnvironment.cs
- CompilationSection.cs
- ContentPresenter.cs
- FreezableOperations.cs
- ActivityExecutionContextCollection.cs
- FontFamily.cs
- NetworkCredential.cs
- ContainsSearchOperator.cs
- PlanCompilerUtil.cs
- MethodExpr.cs
- XPathNodeIterator.cs
- SelectionProviderWrapper.cs
- SamlAssertionKeyIdentifierClause.cs
- BitmapDownload.cs
- MissingMethodException.cs
- DataTemplate.cs
- FigureParagraph.cs
- DeferredReference.cs
- GraphicsState.cs
- XmlHelper.cs
- HttpCacheParams.cs
- ContainerParagraph.cs
- SqlDataSourceCommandEventArgs.cs
- DeleteIndexBinder.cs
- RtfFormatStack.cs
- MethodAccessException.cs
- XmlSchemaRedefine.cs
- DataViewSettingCollection.cs
- TextTreeTextNode.cs
- IteratorFilter.cs
- ApplicationBuildProvider.cs
- RichTextBox.cs
- ChildrenQuery.cs
- CheckBoxRenderer.cs
- HwndKeyboardInputProvider.cs
- DataGridTemplateColumn.cs
- AuditLogLocation.cs
- PassportPrincipal.cs
- EditorZone.cs
- TraceLog.cs
- PeerCollaboration.cs
- DoubleAnimation.cs
- TextServicesContext.cs
- AxHost.cs
- PageContent.cs
- DbParameterCollection.cs
- BinaryOperationBinder.cs
- XmlSchemaInclude.cs
- HandledEventArgs.cs
- SortedDictionary.cs
- IntSecurity.cs
- GridViewRowCollection.cs
- WebPartsPersonalization.cs
- ExtenderHelpers.cs
- ImageMap.cs
- PipelineModuleStepContainer.cs
- ValidationRuleCollection.cs
- SchemeSettingElement.cs
- StdValidatorsAndConverters.cs
- IncomingWebRequestContext.cs
- log.cs
- RequestSecurityToken.cs
- SqlConnectionStringBuilder.cs
- FilteredReadOnlyMetadataCollection.cs
- ImageAnimator.cs
- Page.cs
- TrustSection.cs
- PcmConverter.cs
- ClientTargetCollection.cs
- Run.cs
- TextTrailingWordEllipsis.cs
- AspNetSynchronizationContext.cs
- NativeMethods.cs
- NextPreviousPagerField.cs
- PositiveTimeSpanValidator.cs
- JsonDeserializer.cs
- bidPrivateBase.cs
- TextEffectResolver.cs
- ReadOnlyAttribute.cs
- OleDbConnection.cs
- Region.cs
- DoubleLinkListEnumerator.cs
- EntitySqlQueryState.cs
- ProtocolViolationException.cs
- CodePageUtils.cs
- RuntimeIdentifierPropertyAttribute.cs
- DetailsViewRowCollection.cs
- ClassicBorderDecorator.cs
- PropertyManager.cs
- InheritanceUI.cs
- InfoCardPolicy.cs
- ClientSettingsSection.cs
- TagNameToTypeMapper.cs
- CommandPlan.cs
- QueryOutputWriterV1.cs
- ExpressionEvaluator.cs
- Color.cs