我在页面中有一个“保存”按钮,在成功执行后,我需要将其重定向到“成功页面”,同时需要使用javascript打开另一个窗口
我可以打开新窗口或重定向页面
save(){
//Some code here
ClientScript.RegisterStartupScript(GetType(), "js", "window.open('http:/xyz.com');", true);
Response.redirect("abc.aspx");
}
答案 0 :(得分:0)
试试这个
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "a", "window.open('http:/xyz.com');", true);
Response.Redirect("abc.aspx");