asp ClientScript.RegisterStartupScript()用法

//ASP.NET后台页面跳转

Page.ClientScript.RegisterStartupScript(Page.GetType(), “”, “”);

//后台弹出确定框

ClientScript.RegisterStartupScript(GetType(), “message”, “”);

//ASP.NET后台页面跳转(登录成功会出现弹框,然后在跳转主页)

Page.ClientScript.RegisterStartupScript(Page.GetType(), “”, “”);

asp ClientScript.RegisterStartupScript()用法_第1张图片
在这里插入图片描述

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);

你可能感兴趣的:(ASP.NET)