我知道如果我想从asp.net页面重定向到代码后面的代码我需要写 -
Response.Redirect("SomePage.aspx");
我的问题是,是否可以在javascript函数中执行相同的操作,如果是这样的话?
谢谢你!答案 0 :(得分:16)
这应该做:
window.location = "SomePage.aspx";
或
window.location.href="SomePage.aspx";
或
window.location.assign("SomePage.aspx");
答案 1 :(得分:0)
你可以试试这个
window.location.href = 'page.aspx';
我不知道是否是最好的方式
答案 2 :(得分:0)
试试这个......
ScriptManager.RegisterStartupScript(this, this.GetType(), "onclick", "javascript:window.open( 'SomePage.aspx','_blank','height=600px,width=600px,scrollbars=1');", true);