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); 参考技术A location.replace("ResCorIndex.aspx?id="+ id);
以上是关于ASP.NET跳转页面的主要内容,如果未能解决你的问题,请参考以下文章