Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputControl.cs / 1 / HtmlInputControl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlInputControl.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.ComponentModel; using System.Web; using System.Web.UI; using Debug=System.Web.Util.Debug; using System.Security.Permissions; /* * An abstract base class representing an intrinsic INPUT tag. */ ////// [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] abstract public class HtmlInputControl : HtmlControl { private string _type; /* * Creates a new Input */ ////// The ///abstract class defines /// the methods, properties, and events common to all HTML input controls. /// These include controls for the <input type=text>, <input /// type=submit>, and <input type=file> elements. /// /// protected HtmlInputControl(string type) : base("input") { _type = type; // VSWhidbey 546690: Need to add the type value to the Attributes collection to match Everett behavior. Attributes["type"] = type; } /* * Name property */ ///Initializes a new instance of the ///class. /// [ WebCategory("Behavior"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public virtual string Name { get { return UniqueID; //string s = Attributes["name"]; //return ((s != null) ? s : String.Empty); } set { //Attributes["name"] = MapStringAttributeToString(value); } } // Value that gets rendered for the Name attribute internal virtual string RenderedNameAttribute { get { return Name; //string name = Name; //if (name.Length == 0) // return UniqueID; //return name; } } /* * Value property. */ ////// Gets the value of the HTML /// Name attribute that will be rendered to the browser. /// ////// [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public virtual string Value { get { string s = Attributes["value"]; return((s != null) ? s : String.Empty); } set { Attributes["value"] = MapStringAttributeToString(value); } } /* * Type of input */ ////// Gets or sets the contents of a text box. /// ////// [ WebCategory("Behavior"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public string Type { get { string s = Attributes["type"]; if (!string.IsNullOrEmpty(s)) { return s; } return((_type != null) ? _type : String.Empty); } } /* * Override to render unique name attribute. * The name attribute is owned by the framework. */ ////// Gets the Type attribute for a particular HTML input control. /// ////// /// protected override void RenderAttributes(HtmlTextWriter writer) { writer.WriteAttribute("name", RenderedNameAttribute); Attributes.Remove("name"); bool removedTypeAttribute = false; string type = Type; if (!String.IsNullOrEmpty(type)) { writer.WriteAttribute("type", type); Attributes.Remove("type"); removedTypeAttribute = true; } base.RenderAttributes(writer); if (removedTypeAttribute && DesignMode) { Attributes.Add("type", type); } writer.Write(" /"); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlInputControl.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.ComponentModel; using System.Web; using System.Web.UI; using Debug=System.Web.Util.Debug; using System.Security.Permissions; /* * An abstract base class representing an intrinsic INPUT tag. */ ////// [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] abstract public class HtmlInputControl : HtmlControl { private string _type; /* * Creates a new Input */ ////// The ///abstract class defines /// the methods, properties, and events common to all HTML input controls. /// These include controls for the <input type=text>, <input /// type=submit>, and <input type=file> elements. /// /// protected HtmlInputControl(string type) : base("input") { _type = type; // VSWhidbey 546690: Need to add the type value to the Attributes collection to match Everett behavior. Attributes["type"] = type; } /* * Name property */ ///Initializes a new instance of the ///class. /// [ WebCategory("Behavior"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public virtual string Name { get { return UniqueID; //string s = Attributes["name"]; //return ((s != null) ? s : String.Empty); } set { //Attributes["name"] = MapStringAttributeToString(value); } } // Value that gets rendered for the Name attribute internal virtual string RenderedNameAttribute { get { return Name; //string name = Name; //if (name.Length == 0) // return UniqueID; //return name; } } /* * Value property. */ ////// Gets the value of the HTML /// Name attribute that will be rendered to the browser. /// ////// [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public virtual string Value { get { string s = Attributes["value"]; return((s != null) ? s : String.Empty); } set { Attributes["value"] = MapStringAttributeToString(value); } } /* * Type of input */ ////// Gets or sets the contents of a text box. /// ////// [ WebCategory("Behavior"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public string Type { get { string s = Attributes["type"]; if (!string.IsNullOrEmpty(s)) { return s; } return((_type != null) ? _type : String.Empty); } } /* * Override to render unique name attribute. * The name attribute is owned by the framework. */ ////// Gets the Type attribute for a particular HTML input control. /// ////// /// protected override void RenderAttributes(HtmlTextWriter writer) { writer.WriteAttribute("name", RenderedNameAttribute); Attributes.Remove("name"); bool removedTypeAttribute = false; string type = Type; if (!String.IsNullOrEmpty(type)) { writer.WriteAttribute("type", type); Attributes.Remove("type"); removedTypeAttribute = true; } base.RenderAttributes(writer); if (removedTypeAttribute && DesignMode) { Attributes.Add("type", type); } writer.Write(" /"); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpPostedFile.cs
- WebScriptEnablingElement.cs
- StringAnimationBase.cs
- TextBox.cs
- TcpClientChannel.cs
- ToolStripItemRenderEventArgs.cs
- IntSecurity.cs
- ISSmlParser.cs
- LayoutTableCell.cs
- DBSqlParserTable.cs
- MenuItemCollection.cs
- ObjectNotFoundException.cs
- TagNameToTypeMapper.cs
- ControlHelper.cs
- MachineSettingsSection.cs
- InheritanceAttribute.cs
- KnownTypeHelper.cs
- SafeFileHandle.cs
- ThaiBuddhistCalendar.cs
- CodeNamespaceImportCollection.cs
- RecognizerInfo.cs
- ByeOperationAsyncResult.cs
- DbConnectionStringCommon.cs
- CachedRequestParams.cs
- ADMembershipProvider.cs
- SqlDataSourceCustomCommandPanel.cs
- SchemaLookupTable.cs
- RenderOptions.cs
- WebEvents.cs
- NullRuntimeConfig.cs
- _DisconnectOverlappedAsyncResult.cs
- EventWaitHandle.cs
- RowSpanVector.cs
- WebPartEditorCancelVerb.cs
- UIElementHelper.cs
- ListView.cs
- KeyValueConfigurationCollection.cs
- XmlEventCache.cs
- GridViewDeleteEventArgs.cs
- Schema.cs
- PlainXmlSerializer.cs
- ExpressionConverter.cs
- KnownTypesHelper.cs
- xmlglyphRunInfo.cs
- PartialCachingControl.cs
- TcpServerChannel.cs
- TableLayoutSettings.cs
- EntityDataSourceContextCreatingEventArgs.cs
- Decoder.cs
- XmlEnumAttribute.cs
- recordstate.cs
- RuntimeHelpers.cs
- SystemColorTracker.cs
- ResourceCategoryAttribute.cs
- ProfilePropertySettingsCollection.cs
- WebCodeGenerator.cs
- path.cs
- Crc32.cs
- x509utils.cs
- httpstaticobjectscollection.cs
- StoreItemCollection.cs
- FastPropertyAccessor.cs
- PtsContext.cs
- GetWinFXPath.cs
- MD5CryptoServiceProvider.cs
- ClientSection.cs
- Operand.cs
- DataGridPageChangedEventArgs.cs
- httpstaticobjectscollection.cs
- _NegoState.cs
- RectangleGeometry.cs
- X509Utils.cs
- Delegate.cs
- LateBoundBitmapDecoder.cs
- TimersDescriptionAttribute.cs
- WebPartActionVerb.cs
- PathFigureCollectionConverter.cs
- DependencyObjectProvider.cs
- TextBox.cs
- GroupBoxAutomationPeer.cs
- QilReplaceVisitor.cs
- HttpException.cs
- ProbeMatches11.cs
- SqlMethodCallConverter.cs
- Helper.cs
- CroppedBitmap.cs
- RadialGradientBrush.cs
- DefaultBindingPropertyAttribute.cs
- ComplexLine.cs
- DocumentOutline.cs
- TypeForwardedToAttribute.cs
- DataGridView.cs
- DataSourceControlBuilder.cs
- ListViewTableRow.cs
- DesignerOptionService.cs
- RuntimeArgumentHandle.cs
- DefaultProfileManager.cs
- SecurityTokenReferenceStyle.cs
- COM2ICategorizePropertiesHandler.cs
- KeyEvent.cs