asp.net运行时,动态添加Button(或其它控件),并处理相应的事件

asp.net运行时,动态添加Button(或其它控件),并处理相应的事件

 asp.net动态控件,对于Button,要求必须在<form id="Form1" method="post" runat="server">中,添加,所以,必须要有runat="Server"标记
 
 1.在.aspx.cs中,添加对应的控件变量:
    protected System.Web.UI.WebControls.Button savePaper;
 2.在.aspx.cs中,页面初始化过程中,添加以下代码:
  #region Web 窗体设计器生成的代码
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
   //
   MakerButton();
   InitializeComponent();
   base.OnInit(e);
  ........
  
  对应生成按钮的代码如下:
  //生成按钮
  private void MakerButton()
  {
   savePaper=new System.Web.UI.WebControls.Button();
   this.TextBox1.Text="";
   this.Controls[1].Controls.Add(savePaper);//这里的Controls[1]其实是Form1
   this.savePaper.Style["Top"]="112";
   this.savePaper.Style["Left"]="304";
   this.savePaper.Width=76;
   this.savePaper.Height=25;
   //this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);

  }

  //对应按钮过程
  protected void savePaper_Click(object sender, System.EventArgs e)
  {
   this.TextBox1.Text="AA";
  }

 注意:如果要处理按钮的事件,必须在过程:OnInit中生成按钮,并添加相应的事件处理过程,否则,事件处理过程没有办法执行.

    
  protected System.Web.UI.WebControls.TextBox TextBox3;

  //以下是动态生成TextBox的过程
//   TextBox3= new System.Web.UI.WebControls.TextBox();
//   //this.Panel1.Controls.Add(this.TextBox3);
//   Page.Controls[1].Controls.Add(this.TextBox3);
//   this.TextBox3.Style["Top"]="112";
//   this.TextBox3.Style["Left"]="304";
//   this.TextBox3.Style["Style"]="ButtonA";
//   this.TextBox3.Width=this.TextBox2.Width;
//   this.TextBox3.Height=this.TextBox3.Height;
//   this.TextBox3.Text="AAA";  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值