namespace AddControl
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Panel Panel1;
private void Page_Load(object sender, System.EventArgs e)
{
for(int i=0;i<5;i++)
{
LinkButton myButton = new LinkButton();
myButton.Text = "Page " + i.ToString() + " | ";
myButton.Click+=new EventHandler(myButton_Click);
this.Panel1.Controls.Add(myButton);
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void myButton_Click(object sender, EventArgs e)
{
Response.Write("<script>");
Response.Write("alert('"+((LinkButton)sender).Text+"');");
Response.Write("</script>");
}
}
}
测试没有问题