1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{ }
protected void btn1_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(this.GetType(), "Script_btn1", "alert('click btn1');", true);
lbl1.Text = "this.ClientScript.RegisterStartupScript(this.GetType(), \"Script_btn1\", \"alert('click btn1');\", true);";
}
protected void btn2_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(this.GetType(), "Script_btn2", "alert('click btn2');", true);
lbl1.Text = "this.ClientScript.RegisterStartupScript(this.GetType(), \"Script_btn2\", \"alert('click btn2');\", true);";
}
protected void btn3_Click(object sender, EventArgs e)
{
string ty3 = "document.location.href='About.aspx';";
this.ClientScript.RegisterStartupScript(this.GetType(), "Script_btn3", ty3, true);
lbl1.Text = "this.ClientScript.RegisterStartupScript(this.GetType(), \"Script_btn1\", " + ty3 + ", true);";
}
} |
Partager