在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”。跟直接写脚本的有所不同。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-13
  • 2021-05-17
  • 2021-06-18
  • 2021-12-29
  • 2021-06-02
  • 2021-11-21
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2021-05-23
  • 2021-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-12-23
相关资源
相似解决方案