• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    ASP.NET自定义Web服务器控件之Button控件

    本文实例讲述了ASP.NET自定义Web服务器控件之Button控件实现方法。分享给大家供大家参考。具体实现方法如下:

    复制代码 代码如下:
    using System; 
    using System.Collections.Generic; 
    using System.ComponentModel; 
    using System.Linq; 
    using System.Text; 
    using System.Web; 
    using System.Web.UI; 
    using System.Web.UI.WebControls; 
     
    //自定义web服务器button 
    namespace MyControls 

        [DefaultProperty("Text")] 
        [ToolboxData("{0}:MyButton runat=server>/{0}:MyButton>")] 
        public class MyButton : WebControl,IPostBackEventHandler 
        { 
            [Bindable(true)] 
            [Category("Appearance")] 
            [DefaultValue("")] 
            [Localizable(true)] 
            public string Text 
            { 
                get 
                { 
                    String s = (String)ViewState["Text"]; 
                    return ((s == null) ? String.Empty : s); 
                } 
     
                set 
                { 
                    ViewState["Text"] = value; 
                } 
            } 
     
            [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]//生成属性时,按属性内部内容生成(例如在此控件里面(Size-Height,Size_Width)) 
            //[PersistenceMode(PersistenceMode.InnerProperty)]//以子标签的形式显示(例如Size Width="" Height=""/>) 
            public Size Size 
            { 
                get 
                { 
                    if (ViewState["Size"] == null) { 
                        ViewState["Size"] = new Size(); 
                    } 
                    return (Size)ViewState["Size"]; 
                } 
     
                set 
                { 
                    ViewState["Size"] = value; 
                } 
            } 
            //定义控件的标签形式 
            protected override HtmlTextWriterTag TagKey 
            { 
                get 
                { 
                    return HtmlTextWriterTag.Input; 
                } 
            } 
     
            //初始化 
            protected override void OnInit(EventArgs e) 
            { 
                this.Style.Add("width", Size.Width + "px"); 
                this.Style.Add("height", Size.Height + "px"); 
                this.Attributes.Add("type", "submit"); //提交按钮 
                this.Attributes.Add("value",Text); 
                this.Attributes.Add("name",this.UniqueID);//回发事件必须有的一个属性 
                base.OnInit(e); 
            } 
            //打印当前控件的内容 
            protected override void RenderContents(HtmlTextWriter output) 
            { 
                //output.Write(Text); 
            } 
             
            public delegate void ClickHandle(); 
            private object key=new object(); 
            public event ClickHandle Click { 
                add { 
                    this.Events.AddHandler(key,value); 
                } 
                remove { 
                    this.Events.RemoveHandler(key, value); 
                } 
            } 
            //按钮的回发事件 
            public void RaisePostBackEvent(string eventArgument) 
            { 
                ClickHandle handle = (ClickHandle)base.Events[key]; 
                if (handle != null) { 
                    handle(); 
                } 
            } 
        } 
    }

    复制代码 代码如下:
    %@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 
     
    %@ Register assembly="MyControls" namespace="MyControls" tagprefix="cc1" %> 
     
    !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
     
    html xmlns="http://www.w3.org/1999/xhtml"> 
    head runat="server"> 
        title>/title> 
    /head> 
    body> 
        form id="form1" runat="server"> 
        div> 
        !--自定义服务器按钮控件--> 
            cc1:MyButton ID="MyButton1" Size-Height="30" Size-Width="290" OnClick="btnSubmit" Text="我是一个单独的提交按钮(自定义服务器)" runat="server" /> 
        /div> 
      
         
        /form> 
     
    /body> 
    /html>

    复制代码 代码如下:
    using System; 
    using System.Collections.Generic; 
    using System.Linq; 
    using System.Web; 
    using System.Web.UI; 
    using System.Web.UI.WebControls; 
     
    public partial class _Default : System.Web.UI.Page 

        protected void Page_Load(object sender, EventArgs e) 
        { 
     
        } 
        //自定义服务器控件 
        protected void btnSubmit() { 
            Response.Write("我是自定义服务器控件的点击事件"); 
        } 
    }

    希望本文所述对大家的asp.net程序设计有所帮助。

    您可能感兴趣的文章:
    • ASP.NET服务器端控件RadioButtonList,DropDownList,CheckBoxList的取值、赋值用法
    • asp.net Page.EnableEventValidation 属性验证服务器控件的回发和回调事件出现的错误
    • jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值
    • asp.net 服务器控件的 ID,ClientID,UniqueID 的区别
    • asp.net下使用Request.From获取非服务器控件的值的方法
    • jQuery生成asp.net服务器控件的代码
    • ASP.NET 动态写入服务器端控件
    • asp.net Page.Controls对象(找到所有服务器控件)
    • Asp.Net使用服务器控件Image/ImageButton显示本地图片的方法
    上一篇:ASP.NET静态页生成方法
    下一篇:ASP.NET使用GridView导出Excel实现方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    ASP.NET自定义Web服务器控件之Button控件 ASP.NET,自定义,Web,服务器,