//ASP.NET后台页面跳转
Page.ClientScript.RegisterStartupScript(Page.GetType(), “”, “”);
//后台弹出确定框
ClientScript.RegisterStartupScript(GetType(), “message”, “”);
//ASP.NET后台页面跳转(登录成功会出现弹框,然后在跳转主页)
Page.ClientScript.RegisterStartupScript(Page.GetType(), “”, “”);
或
Page.ClientScript.RegisterStartupScript(typeof(string), “”, “”);
//后台弹出文本框
ScriptManager.RegisterStartupScript(Page, typeof(string), “popUp”, “window.open(‘rptView.aspx’,‘打印预览’,‘toolbar=no,location=no,scrollbars=yes,top=200px,left=200px,width=904px,height=650px’)”, true);