重定向以及打开一个新窗口

时间:2015-03-05 06:47:03

标签: asp.net

我在页面中有一个“保存”按钮,在成功执行后,我需要将其重定向到“成功页面”,同时需要使用javascript打开另一个窗口

我可以打开新窗口或重定向页面

save(){
    //Some code here
    ClientScript.RegisterStartupScript(GetType(), "js", "window.open('http:/xyz.com');", true);
    Response.redirect("abc.aspx");
}

1 个答案:

答案 0 :(得分:0)

试试这个

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "a", "window.open('http:/xyz.com');", true);
Response.Redirect("abc.aspx");