| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- //
- // System.Web.UI.WebControls.TextBox.cs
- //
- // Authors:
- // Gaurav Vaish ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) Gaurav Vaish (2002)
- // (C) 2003 Andreas Nahr
- //
- using System;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- [ControlBuilder (typeof (TextBoxControlBuilder))]
- [DefaultEvent("TextChanged")]
- [DefaultProperty("Text")]
- [ParseChildren(false)]
- [ValidationProperty("Text")]
- [DataBindingHandler("System.Web.UI.Design.TextDataBindingHandler, " + Consts.AssemblySystem_Design)]
- public class TextBox : WebControl, IPostBackDataHandler
- {
- private static readonly object TextChangedEvent = new object ();
- public TextBox() : base (HtmlTextWriterTag.Input)
- {
- }
- [DefaultValue (false), WebCategory ("Behavior")]
- [WebSysDescription ("The control automatically posts back after changing the text.")]
- public virtual bool AutoPostBack
- {
- get {
- object o = ViewState ["AutoPostBack"];
- return (o == null) ? false : (bool) o;
- }
- set { ViewState ["AutoPostBack"] = value; }
- }
- [DefaultValue (0), Bindable (true), WebCategory ("Appearance")]
- [WebSysDescription ("The width of this control specified in characters.")]
- public virtual int Columns
- {
- get {
- object o = ViewState ["Columns"];
- return (o == null) ? 0 : (int) o;
- }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("value", "Columns value has to be 0 for 'not set' or bigger than 0.");
- ViewState ["Columns"] = value;
- }
- }
- [DefaultValue (0), Bindable (true), WebCategory ("Behavior")]
- [WebSysDescription ("The maximum number of characters you can enter in this control.")]
- public virtual int MaxLength
- {
- get
- {
- object o = ViewState ["MaxLength"];
- return (o == null) ? 0 : (int) o;
- }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("value", "MaxLength value has to be 0 for 'not set' or bigger than 0.");
- ViewState ["MaxLength"] = value;
- }
- }
- [DefaultValue (false), Bindable (true), WebCategory ("Behavior")]
- [WebSysDescription ("If the control is ReadOnly you cannot enter new text.")]
- public virtual bool ReadOnly
- {
- get
- {
- object o = ViewState ["ReadOnly"];
- return (o == null) ? false : (bool) o;
- }
- set { ViewState ["ReadOnly"] = value; }
- }
- [DefaultValue (0), Bindable (true), WebCategory ("Behavior")]
- [WebSysDescription ("The number of lines that this multiline contol spans.")]
- public virtual int Rows
- {
- get
- {
- object o = ViewState ["Rows"];
- return (o == null) ? 0 : (int) o;
- }
- set {
- if (value < 0)
- throw new ArgumentOutOfRangeException ("value", "Rows value has to be 0 for 'not set' or bigger than 0.");
- ViewState ["Rows"] = value;
- }
- }
- [DefaultValue (""), Bindable (true), WebCategory ("Appearance")]
- [PersistenceMode (PersistenceMode.EncodedInnerDefaultProperty)]
- [WebSysDescription ("The text that this control initially displays.")]
- public virtual string Text
- {
- get {
- object o = ViewState ["Text"];
- return (o == null) ? String.Empty : (string) o;
- }
- set { ViewState ["Text"] = value; }
- }
- [DefaultValue (typeof (TextBoxMode), "SingleLine"), WebCategory ("Behavior")]
- [WebSysDescription ("A mode of how the control operates.")]
- public virtual TextBoxMode TextMode
- {
- get {
- object o = ViewState ["TextMode"];
- return (o == null) ? TextBoxMode.SingleLine : (TextBoxMode) o;
- }
- set {
- if(!Enum.IsDefined (typeof(TextBoxMode), value))
- throw new ArgumentOutOfRangeException ("value", "Only existing modes are allowed");
- ViewState ["TextMode"] = value;
- }
- }
- [DefaultValue (true), WebCategory ("Layout")]
- [WebSysDescription ("Determines if a line wraps at line-end.")]
- public virtual bool Wrap
- {
- get {
- object o = ViewState ["Wrap"];
- return (o == null) ? true : (bool) o;
- }
- set { ViewState ["Wrap"] = value; }
- }
- [WebCategory ("Action")]
- [WebSysDescription ("Raised when the text is changed.")]
- public event EventHandler TextChanged
- {
- add { Events.AddHandler (TextChangedEvent, value); }
- remove { Events.RemoveHandler (TextChangedEvent, value); }
- }
- protected override HtmlTextWriterTag TagKey
- {
- get {
- if(TextMode == TextBoxMode.MultiLine)
- return HtmlTextWriterTag.Textarea;
- return HtmlTextWriterTag.Input;
- }
- }
- protected override void AddAttributesToRender (HtmlTextWriter writer)
- {
- if(Page != null)
- Page.VerifyRenderingInServerForm (this);
- writer.AddAttribute (HtmlTextWriterAttribute.Name, UniqueID);
- if (TextMode == TextBoxMode.MultiLine){
- if (Rows > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Rows,
- Rows.ToString (
- NumberFormatInfo.InvariantInfo));
- if (Columns > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Cols,
- Columns.ToString (
- NumberFormatInfo.InvariantInfo));
- if (!Wrap)
- writer.AddAttribute(HtmlTextWriterAttribute.Wrap, "off");
- } else {
- string mode;
- if (TextMode == TextBoxMode.Password)
- mode = "password";
- else {
- mode = "text";
- if (Text.Length > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Value, Text);
- }
-
- writer.AddAttribute (HtmlTextWriterAttribute.Type, mode);
- if (MaxLength > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Maxlength,
- MaxLength.ToString (NumberFormatInfo.InvariantInfo));
- if (Columns > 0)
- writer.AddAttribute (HtmlTextWriterAttribute.Size,
- Columns.ToString (NumberFormatInfo.InvariantInfo));
- }
- if (ReadOnly)
- writer.AddAttribute (HtmlTextWriterAttribute.ReadOnly, "readonly");
- base.AddAttributesToRender (writer);
- if (AutoPostBack && Page != null){
- writer.AddAttribute (HtmlTextWriterAttribute.Onchange,
- Page.GetPostBackClientEvent (this, ""));
- writer.AddAttribute ("language", "javascript");
- }
- }
- protected override void AddParsedSubObject(object obj)
- {
- if(!(obj is LiteralControl))
- throw new HttpException (HttpRuntime.FormatResourceString (
- "Cannot_Have_Children_Of_Type", "TextBox",
- GetType ().Name.ToString ()));
- Text = ((LiteralControl) obj).Text;
- }
- protected override void OnPreRender (EventArgs e)
- {
- base.OnPreRender (e);
- if (Events [TextChangedEvent] == null)
- ViewState.SetItemDirty ("Text", false);
- }
- protected virtual void OnTextChanged (EventArgs e)
- {
- if(Events != null){
- EventHandler eh = (EventHandler) (Events [TextChangedEvent]);
- if(eh != null)
- eh (this, e);
- }
- }
- protected override void Render (HtmlTextWriter writer)
- {
- RenderBeginTag(writer);
- if (TextMode == TextBoxMode.MultiLine)
- HttpUtility.HtmlEncode (Text, writer);
- RenderEndTag(writer);
- }
- bool IPostBackDataHandler.LoadPostData (string postDataKey,
- NameValueCollection postCollection)
- {
- if (postCollection [postDataKey] != Text){
- Text = postCollection [postDataKey];
- return true;
- }
- return false;
- }
- void IPostBackDataHandler.RaisePostDataChangedEvent ()
- {
- OnTextChanged (EventArgs.Empty);
- }
- }
- }
|