欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

aspx中页面按钮写返回上一页代码

程序员文章站 2024-03-05 13:29:36
不管怎样,它就是不返回上一页。 经查资料,原来在asp.net的处理方式已经有所改...
<script>history.go(-1);</script>

不管怎样,它就是不返回上一页。

经查资料,原来在asp.net的处理方式已经有所改变。当用户点击按钮时,页已经刷新了。因此我们需要把-1改为-2方可以返回至前一页。
复制代码 代码如下:

protected void buttongoback_click(object sender, eventargs e)
{
this.page.clientscript.registerclientscriptblock(this.gettype(), "this", "<script>history.go(-2);</script>");
}


示例运行效果:

aspx中页面按钮写返回上一页代码