asp.net后台调用前台js

前台js:

 



后台语句:

  protected void Button1_ServerClick(object sender, EventArgs e)
    {
       //界面有updatepanel下使用如下:
        ScriptManager.RegisterStartupScript(UpdatePanel1, this.Page.GetType(), "", "alertClick();", true);
        //如果没有就如下代码
       // this.Page.ClientScript.RegisterStartupScript(this.Page.GetType(), "", "", true);
    }





你可能感兴趣的:(div+css,asp.net)