ASP.NET跳转页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET跳转页面相关的知识,希望对你有一定的参考价值。

Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('删除成功!');location.replace(‘ResCorIndex.aspx’)", true);
我要在location.replace(‘ResCorIndex.aspx’)传个参数到ResCorIndex.aspx怎么写呢

Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('删除成功!');location.replace('ResCorIndex.aspx?参数=值')", true);

或者

Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('删除成功!');location.replace('ResCorIndex.aspx?参数='" + 变量 + "')", true);
参考技术A location.replace("ResCorIndex.aspx?id="+ id);

以上是关于ASP.NET跳转页面的主要内容,如果未能解决你的问题,请参考以下文章

asp.net在同一页面跳转到指定位置

ASP.net中论坛各页面之间的跳转(注:跳转到指定的用户名)

ASP怎样实现页面跳转。

ASP.NET如何实现跳转到上一个浏览的页面?

ASP.NET页面传值与跳转

asp.net 局部跳转无刷新怎么写?