• 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 + "\" />");
          }
       }
    }
  • 相关阅读:
    luogu1525 [NOIp2011]关押罪犯 (并查集)
    luogu1084 [NOIp2012]疫情控制 (二分答案+倍增+dfs序)
    luogu1083 [NOIp2012]借教室 (二分答案+差分)
    bzoj4152 The Captain (dijkstra)
    luogu1081 [NOIp2012]开车旅行 (STL::multiset+倍增)
    suoi22 WRX知识树(dfs序)
    [HNOI2010]弹飞绵羊
    1596: [Usaco2008 Jan]电话网络
    [Tyvj Jan]青蛙跳荷叶
    [BZOJ1116] CLO
  • 原文地址:https://www.cnblogs.com/shihao/p/2498657.html
Copyright © 2020-2023  润新知