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";