protected void Page_Load(object sender, EventArgs e)
{
Button6.Click += new System.EventHandler(Button4_Click);
Button6.Click += new System.EventHandler(Button5_Click);
}
protected void Buttonx_Click(object sender, EventArgs e)
{
Button b;
b = (Button)sender;
switch (b.ID)
{
case "Button1":
Label1.Text = "You clicked the first button";
break;
case "Button2":
Label1.Text = "You clicked the second button";
break;
case "Button3":
Label1.Text = "You clicked the third button";
break;
}
}
protected void Button4_Click(object sender, EventArgs e)
{
Label1.Text = "You clicked the 4th button";
}
protected void Button5_Click(object sender, EventArgs e)
{
Label1.Text = Label1.Text+"You clicked the 5th button";
}
protected void Button6_Click(object sender, EventArgs e)
{
}
}