程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.net 自定義服務器控件 TextBox

ASP.net 自定義服務器控件 TextBox

編輯:.NET實例教程

基於項目需要,針對ASP.Net服務器控件TextBox進行改造,使其增加字符串輸入提示功能,在控件獲得焦點時,與普通的服務器端 TextBox控件相同,支持數據輸入。當控件失去焦點並且文本框內容為空時,顯示預定義的提示文本。用戶輸入“預定義的提示文本”為文本內容時,默認文本框Text值為空字符串。

[DefaultProperty("Text")]
[ToolboxData("<{0}:TextBox runat=server></{0}:TextBox>")]
public class TextBox : System.Web.UI.WebControls.TextBox
{
    [Bindable(true)]
    [Category("Appearance")]
    [DefaultValue("")]
    [Localizable(true)]
    [Browsable(true)]
    public string Tip
    {
        get
        {
            String s = (String)VIEwState["Tip"];
            return ((s == null) ? String.Empty : s);
        }
        set
        {
            VIEwState["Tip"] = value;
        }
    }
    [Bindable(true)]
    [Category("Appearance")]
    [DefaultValue("")]
    [Localizable(true)]
    public override string Text
    {
        get
        {
            if (base.Text.ToLower() == Tip.ToLower())
                return string.Empty;
            return base.Text;
        }
        set
        {
            base.Text = value;
        }
    }
    protected override void Render(HtmlTextWriter writer)
    {
        this.Attributes.Add("tip",Tip);
        this.Attributes.Add("onblur",
            "if(this.value==''){this.style.color='#C1C1C1';this.value='"+Tip+"';};");
        this.Attributes.Add("onfocus",
            "if(this.value=='"+Tip+"'){this.style.color='#000000';this.value='';};");
        if (string.IsNullOrEmpty(base.Text.Trim()))
        {
            this.Attributes.Add("value", this.Tip);
            this.Attributes.Add("style", "color:#C1C1C1");
        }
        base.Render(writer);
    }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved