首页 > 编程 > .NET > 正文

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

2024-07-10 13:23:31
字体:
来源:转载
供稿:网友
<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中页面按钮写返回上一页代码

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表