web-dev-qa-db-ja.com

JavaScript関数を使用してasp.netページから別のページにリダイレクトする

私がasp.netページから別のコードの別のページにリダイレクトしたい場合、私は書く必要があることを知っています-

Response.Redirect("SomePage.aspx");

私の質問は、JavaScript関数で同じことを行うことが可能かどうか、そしてそれがどのように可能かどうかです。

ありがとうございました!

9
user3475785

これは行う必要があります:

window.location = "SomePage.aspx";

または

window.location.href="SomePage.aspx";

または

window.location.assign("SomePage.aspx");
18
Amit Joki

これを試して....

ScriptManager.RegisterStartupScript(this, this.GetType(), "onclick", "javascript:window.open( 'SomePage.aspx','_blank','height=600px,width=600px,scrollbars=1');", true);
0
Jameem

あなたはこれを試すことができます

window.location.href = 'page.aspx';

最善の方法かどうかはわかりません

0
BFigueiredo