.net 后台调用JavaScript实现弹窗、跳转

.net 后台页面中,如果需要弹出窗口,可以用js,但是RegisterStartupScript 方法已被停用。可以改用 ClientScriptManager 类的 RegisterStartupScript 方法 实现

.net 后台调用JavaScript实现弹窗、跳转_第1张图片

//ASP.NET后台页面跳转

Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "");

//后台弹出确定框

ClientScript.RegisterStartupScript(GetType(), "message", "");

//ASP.NET后台页面跳转

Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "");

//or

Page.ClientScript.RegisterStartupScript(typeof(string), "", "");

//后台弹出文本框

ScriptManager.RegisterStartupScript(Page, typeof(string), "popUp", "window.open('1.aspx','打印预览','toolbar=no,location=no,scrollbars=yes,top=200px,left=200px,width=600px,height=600px')", true);

 //普通弹出
        //Page.ClientScript.RegisterStartupScript(this.GetType(), "", "");

        //确认跳转1还是2
        //Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "");
        //弹出并跳转
        //  Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "");
        //直接跳转
        //Page.ClientScript.RegisterStartupScript(typeof(string), "", "");
        //弹出新小窗口
        ScriptManager.RegisterStartupScript(Page, typeof(string), "popUp", "window.open('shaopic.aspx','打印预览','toolbar=no,location=no,scrollbars=yes,top=200px,left=200px,width=904px,height=650px')", true);
        //弹出新大窗口
        // Page.ClientScript.RegisterStartupScript(this.GetType(), "", "");

        //对话框形式打开新窗口;
        //Page.ClientScript.RegisterStartupScript(this.GetType(), "", "");
        Page.ClientScript.RegisterStartupScript(this.GetType(), "", "");

        //button 添加确认框
        //  btnDeleteAdmin.Attributes.Add("onclick", "return confirm('你确认要删除吗?')");

你可能感兴趣的:(后端,c#)