頁面刷新 window.location.reload(); window.location.reload(); 跳轉指定頁面 Response.Redirect(Url); 返回上一頁 window.history.back(); 返回下一頁 window.history.forward(); 返 ...
- 頁面刷新
window.location.reload(); |
- 跳轉指定頁面
Response.Redirect(Url); |
- 返回上一頁
window.history.back(); |
- 返回下一頁
window.history.forward(); |
- 返回到指定頁面
window.history.go(index); //index代表返回的頁面序號,-1為上一頁 |
- 返回頁面時刷新
Response.Buffer = true; Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1); Response.Expires = 0; Response.CacheControl = "no-cache"; |