私がasp.netページから別のコードの別のページにリダイレクトしたい場合、私は書く必要があることを知っています-
Response.Redirect("SomePage.aspx");
私の質問は、JavaScript関数で同じことを行うことが可能かどうか、そしてそれがどのように可能かどうかです。
ありがとうございました!
これは行う必要があります:
window.location = "SomePage.aspx";
または
window.location.href="SomePage.aspx";
または
window.location.assign("SomePage.aspx");
これを試して....
ScriptManager.RegisterStartupScript(this, this.GetType(), "onclick", "javascript:window.open( 'SomePage.aspx','_blank','height=600px,width=600px,scrollbars=1');", true);
あなたはこれを試すことができます
window.location.href = 'page.aspx';
最善の方法かどうかはわかりません