zoukankan      html  css  js  c++  java
  • Building ASP.NET Server ControlsCustomEventTextbox.cs

    // Title: Building ASP.NET Server Controls
    //
    // Chapter: 5 - Event-based Programming
    // File: CustomEventTextbox.cs
    // Written by: Dale Michalk and Rob Cameron
    //
    // Copyright ?2003, Apress L.P.

    using System;
    using System.Web;
    using System.Web.UI;
    using System.Collections.Specialized;
    using System.ComponentModel;

    namespace ControlsBookLib.Ch05
    {
       [ToolboxData("<{0}:CustomEventTextbox runat=server></{0}:CustomEventTextbox>"),
       DefaultProperty("Text")]
       public class CustomEventTextbox : Control, IPostBackDataHandler
       {
          private string oldText;

          public virtual string Text
          {
             get
             {
                object text = ViewState["Text"];
                if (text == null)
                   return string.Empty;
                else
                   return (string) text;
             }
             set
             {
                ViewState["Text"] = value;
             }
          }

          public bool LoadPostData(string postDataKey,
             NameValueCollection postCollection)
          {
             string postedValue = postCollection[postDataKey];
             if (!Text.Equals(postedValue))
             {
                oldText = Text;
                Text = postedValue;
                return true;
             }
             else
                return false;
          }

          public void RaisePostDataChangedEvent()
          {
             OnTextChanged(new TextChangedEventArgs(oldText, Text));
          }

          protected void OnTextChanged(TextChangedEventArgs tce)
          {
             if (TextChanged != null)
                TextChanged(this, tce);
          }
          public event TextChangedEventHandler TextChanged;

          override protected void Render(HtmlTextWriter writer)
          {
             base.Render(writer);
             Page.VerifyRenderingInServerForm(this);
             // write out the <INPUT type="text"> tag
             writer.Write("<INPUT type=\"text\" name=\"");
             writer.Write(this.UniqueID);
             writer.Write("\" value=\"" + this.Text + "\" />");
          }
       }
    }
  • 相关阅读:
    redis 使用
    VS----id为xxxx的进程当前未运行 问题
    bootstrap--------bootstrap table显示行号
    js--------js获取当前时间,返回日期yyyy-MM-dd
    CLR via C#--------CLR的执行模式
    Python链表成对调换
    Python去除列表中的重复元素
    MySQL索引背后的数据结构及算法原理
    Python 垃圾回收机制
    Python 里的拷贝
  • 原文地址:https://www.cnblogs.com/shihao/p/2498657.html
Copyright © 2011-2022 走看看