首页 > 学院 > 开发设计 > 正文

C# 中返回上一页问题代码

2019-11-18 17:07:51
字体:
来源:转载
供稿:网友

在C# Web程序中,如为页面按钮写返回上一页代码

this.RegisterClientScriptBlock("E", "<script language=javascript>history.go(-2);</script>");

其中,history.go(-2),要写为-2,因在按钮事件触发前,已刷新一次页面,所以应是-2。

Response.Write("<script language=Javascript>history.go(-2);</script>");

此处也要写为“-2”。跟直接写脚本的有所不同。

http://brawei.VEVb.com/archive/2006/06/28/438149.html


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