本文介绍了我如何使用会话变量而不是javascript禁用前进和后退按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用会话变量禁用浏览器的前进和后退按钮

how do i disable forward and backward button of my browser using session variable

推荐答案

// Code disables caching by browser. Hence the back browser button
// grayed out and could not causes the Page_Load event to fire 
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
Response.Cache.SetNoStore();




这篇关于我如何使用会话变量而不是javascript禁用前进和后退按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 07:43