使用javascript函数从asp.net页面重定向到另一个页面

时间:2014-04-11 13:40:47

标签: javascript asp.net visual-studio-2010 response.redirect

我知道如果我想从asp.net页面重定向到代码后面的代码我需要写 -

Response.Redirect("SomePage.aspx");

我的问题是,是否可以在javascript函数中执行相同的操作,如果是这样的话?

谢谢你!

3 个答案:

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