多页面重定向到同一页面后再返回之四巧手_AX
①html的button控件,
<input onclick="history.go(-1)" type="button" value="Button">
注意onclick事件,简单吧.
ASP.NET同过它进行了下面两种方式的演化
②在Page_Load事件里,为Button添加属性
Button1.Attributes.Add("onclick","history.go(-1);return false;")
不知道return false有啥子鸟用! 有懂的指点下,我代码是抄过来的....
③通过写输出脚本
Response.Write("<script>history.go(-2);</script>");
-1是返回到当前页
④页面传值时带参数
我们假设:A→B→A
A:Response.Redirect("B.aspx?AXzhz="A.aspx"");
B:string s=Request.QuseryString["AXzhz"];
Response.Redirect(s);
<input onclick="history.go(-1)" type="button" value="Button">
注意onclick事件,简单吧.
ASP.NET同过它进行了下面两种方式的演化
②在Page_Load事件里,为Button添加属性
Button1.Attributes.Add("onclick","history.go(-1);return false;")
不知道return false有啥子鸟用! 有懂的指点下,我代码是抄过来的....
③通过写输出脚本
Response.Write("<script>history.go(-2);</script>");
-1是返回到当前页
④页面传值时带参数
我们假设:A→B→A
A:Response.Redirect("B.aspx?AXzhz="A.aspx"");
B:string s=Request.QuseryString["AXzhz"];
Response.Redirect(s);
少帮主的斧头好久不饮血了!