Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputControl.cs / 2 / 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; // 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. //------------------------------------------------------------------------------ //// 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; // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ByteStorage.cs
- Site.cs
- TreeNodeBindingCollection.cs
- xml.cs
- PropertyRef.cs
- Fault.cs
- ToolboxBitmapAttribute.cs
- CqlWriter.cs
- AssemblyBuilder.cs
- EncodingTable.cs
- SolidColorBrush.cs
- StringUtil.cs
- MessageParameterAttribute.cs
- Win32.cs
- ToolStripHighContrastRenderer.cs
- ScrollBarRenderer.cs
- DesignerAttribute.cs
- BufferedWebEventProvider.cs
- IgnoreSectionHandler.cs
- CopyNamespacesAction.cs
- Base64Decoder.cs
- SecUtil.cs
- CngProperty.cs
- EntityStoreSchemaFilterEntry.cs
- RecordManager.cs
- BamlResourceContent.cs
- SchemaTypeEmitter.cs
- Point4D.cs
- ColorTransformHelper.cs
- SqlError.cs
- OpenFileDialog.cs
- SharedDp.cs
- ClientBuildManagerCallback.cs
- PlainXmlWriter.cs
- KeyboardNavigation.cs
- XmlSchemaAnnotation.cs
- DefaultPropertyAttribute.cs
- KeyConverter.cs
- ServiceDescription.cs
- _ListenerAsyncResult.cs
- Transactions.cs
- UpDownEvent.cs
- Content.cs
- UserMapPath.cs
- VoiceSynthesis.cs
- DependencyPropertyAttribute.cs
- LOSFormatter.cs
- Trace.cs
- Point3DCollectionConverter.cs
- TcpClientCredentialType.cs
- MenuItem.cs
- NonParentingControl.cs
- WorkflowDesignerMessageFilter.cs
- SchemaAttDef.cs
- ArrayWithOffset.cs
- ToolStripContainerDesigner.cs
- DataGridViewDataConnection.cs
- TraceSection.cs
- InstanceOwnerQueryResult.cs
- StringFunctions.cs
- StatementContext.cs
- DesignerLoader.cs
- TextBox.cs
- MustUnderstandSoapException.cs
- TableLayoutPanelCellPosition.cs
- DiscreteKeyFrames.cs
- ThreadLocal.cs
- followingquery.cs
- TiffBitmapDecoder.cs
- TableRowCollection.cs
- TextTreeTextNode.cs
- StreamingContext.cs
- RTLAwareMessageBox.cs
- ExpressionConverter.cs
- BaseAsyncResult.cs
- BooleanAnimationBase.cs
- WebPartEditVerb.cs
- EntitySetBaseCollection.cs
- MSG.cs
- DataGridViewRow.cs
- Int64AnimationUsingKeyFrames.cs
- BinaryParser.cs
- ConfigXmlSignificantWhitespace.cs
- CqlParserHelpers.cs
- ping.cs
- WindowHideOrCloseTracker.cs
- Sentence.cs
- WorkflowInstance.cs
- ToolstripProfessionalRenderer.cs
- StringDictionaryWithComparer.cs
- IItemContainerGenerator.cs
- DetailsView.cs
- _ContextAwareResult.cs
- CompileLiteralTextParser.cs
- FrameworkElementFactoryMarkupObject.cs
- XmlSignificantWhitespace.cs
- Expression.cs
- RegexCode.cs
- StaticExtension.cs
- CodeSnippetCompileUnit.cs