且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何阻止用户使用后退按钮

更新时间:2023-12-02 13:47:16

禁用缓存上的网页,避免缓存的页面。

Disable caching on that pages and avoid caching the page.

Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();