<input type=button value=刷新 onclick="window.location.reload()"/>
<input type=button value=前进 onclick="window.history.go(1)"/>
<input type=button value=后退 onclick="window.history.go(-1)"/>
<input type=button value=前进 onclick="window.history.forward()"/>
<input type=button value=后退 onclick="window.history.back()"/>
<input type=button value=后退刷新 onclick="window.history.go(-1);window.location.reload()"/>
其中,history.go(-2),要写为-2,因在按钮事件触发前,已刷新一次页面,所以应是-2。

1
Response.Write("<script language=javascript>history.go(-2);</script>");
此处也要写为“-2”。跟直接写脚本的有所不同。

history.back()是会上一页
history.go(i)去指定的某页

如果是history.go(0)那就是刷新页面,这两个属于JS代码,相当于IE的前进、后退功能。
具体的用处就要看什么时候需要这个就用上。比如用户注册时的验证是后台验证,不符合要求的时候就可以用这个,可以最大限度保证用户少重复输入数据。