1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
//------------------------------------------------------------------------------
// <copyright file="HtmlInputControl.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* 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.
*/
/// <devdoc>
/// <para>
/// The <see langword='HtmlInputControl'/> 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.
/// </para>
/// </devdoc>
[
ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
]
abstract public class HtmlInputControl : HtmlControl {
private string _type;
/*
* Creates a new Input
*/
/// <devdoc>
/// <para>Initializes a new instance of the <see cref='System.Web.UI.HtmlControls.HtmlInputControl'/> class.</para>
/// </devdoc>
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
*/
/// <devdoc>
/// <para>
/// Gets the value of the HTML
/// Name attribute that will be rendered to the browser.
/// </para>
/// </devdoc>
[
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.
*/
/// <devdoc>
/// <para>
/// Gets or sets the contents of a text box.
/// </para>
/// </devdoc>
[
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
*/
/// <devdoc>
/// <para>
/// Gets the Type attribute for a particular HTML input control.
/// </para>
/// </devdoc>
[
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.
*/
/// <internalonly/>
/// <devdoc>
/// </devdoc>
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(" /");
}
}
}
|