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 + "\" />");
          }
       }
    }
  • 相关阅读:
    Spring常用注解汇总
    Maven依赖Scope标签用法
    CRC编码
    Spring Boot中使用Spring Security进行安全控制
    Spring Cloud构建微服务架构(一)服务注册与发现
    http://www.cnblogs.com/kkdn/
    在Java中,你真的会日期转换吗
    利用SpringCloud搭建一个最简单的微服务框架
    Spring Boot微服务框架的搭建
    Spring Cloud全家桶主要组件及简要介绍
  • 原文地址:https://www.cnblogs.com/shihao/p/2498657.html
Copyright © 2011-2022 走看看