在 C# 中禁用浏览器的后退按钮
本文关键字:按钮 浏览器 | 更新日期: 2023-09-27 18:26:14
<script type="text/javascript">
{
function DisableBackButton() {
window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function (evt) { if (evt.persisted) DisableBackButton() }
window.onunload = function () { void (0) }
}
</script>
我在母版页中使用以下代码来启用后退按钮。
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
Response.Cache.SetNoStore();
Response.ExpiresAbsolute = DateTime.Now.AddDays(-1d);
Response.Expires = -1500;
Response.CacheControl = "no-cache";
Page.Response.Cache.SetCacheability(HttpCacheability.NoCache);
我在那个注销按钮中有一个母版页,一旦用户单击该用户将被重定向到注销页面。这工作正常,一旦我单击后退按钮,它就会将我带到我浏览的最后一页。甚至我尝试过使用JavaScript。
我正在创建 5 分钟后的会话超时。当会话过期时,用户将被重定向到会话到期页面,后退按钮也会将我带到浏览的最后一页。
此JavaScript功能将适用于所有浏览器,并防止用户通过点击浏览器返回按钮返回上一页 检查下面的JavaScript代码
<script type="text/javascript" language="javascript">
function DisableBackButton() {
window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function(evt) { if (evt.persisted) DisableBackButton() }
window.onunload = function() { void (0) }
</script>
我们需要将上面的脚本放在页面的标题部分,我们需要阻止用户使用浏览器后退按钮导航回另一个页面。
我将用一个例子来解释我们的要求,我有两个页面 Defaul1.aspx 和 Default2.aspx现在我将从 Default1.aspx 页面重定向到 Defaul2.aspx 页面。从 Defaul1.aspx 页面到 Default2 后.aspx如果我尝试从 Defaul2 导航回 Default1.aspx 页面.aspx那么我希望阻止用户导航回上一页 (Defaul1.aspx(。要实现此功能,请将所需页面的标题部分中的JavaScript函数放在上面。
将我们的 JavaScript 功能添加到我们的页面后,代码将如下所示
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Disable Browser Back buttons</title>
<script type="text/javascript" language="javascript">
function DisableBackButton() {
window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function(evt) { if (evt.persisted) DisableBackButton() }
window.onunload = function() { void (0) }
</script>
</head>
<body >
<form id="form1" runat="server">
<div>
First Page
</div>
<div>
<asp:Button id="btnFirst" runat="server" Text="Go to First Page" PostBackUrl="~/Default.aspx" />
<asp:Button ID="btnSecond" runat="server" Text="Go to Second Page" PostBackUrl="~/Default2.aspx" />
<asp:Button ID="btnThree" runat="server" Text="Go to Third Page" PostBackUrl="~/Default3.aspx" />
</div>
</form>
</body>
</html>
我们还可以通过在事件或Page_Load事件中编写以下代码行的代码后禁用浏览器缓存来实现Page_Init并且不要忘记使用 System.Web 添加命名空间;因为 HttpCacheability 与该命名空间相关。
protected void Page_Init(object sender, EventArgs e)
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
Response.Cache.SetNoStore();
}
我们需要将此代码放在需要禁用浏览器后退按钮的页面中
<script type="text/javascript" language="javascript">
window.onload = function () {
noBack();
}
function noBack() {
window.history.forward();
}
</script>
<body onpageshow="if (event.persisted) noBack();">
</body>
你好你可以这样做,
在母版页中实现此代码
我已经实现了这个,它对我有用..
<script language="JavaScript">
this.history.forward(-1);
单击"注销"时重定向到"注销.aspx"页面添加新页面作为注销.aspx其中包含以下正文内容。
Please wait. You are Logging out.
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick">
</asp:Timer>
添加JavaScript,如下所示
function noBack() {
window.history.forward()
}
noBack();
window.onload = noBack;
window.onpageshow = function (evt) { if (evt.persisted) noBack(); }
window.onunload = function () { void (0); }
注销.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
}
protected void Timer1_Tick(object sender, EventArgs e)
{
Response.Redirect("Login.aspx"));
}
来源 : http://geekswithblogs.net/Frez/archive/2010/05/18/back-button-issue-after-logout-in-asp.net.aspx
当用户单击注销按钮时,您应该编写单行来清除会话。
Session.Abondon();
并导航到注销页面或登录页面。因此,一旦用户单击注销按钮,他就无法返回,因为他的会话已被清除。
要禁用浏览器的后退按钮,请在母版页标题部分编写以下代码作为
<script language="JavaScript" type="text/javascript">
window.history.forward();
</script>
<script type="text/javascript">
function DisableBackButton() {
window.history.forward()
}
DisableBackButton();
window.onload = DisableBackButton;
window.onpageshow = function (evt) { if (evt.persisted) DisableBackButton() }
window.onunload = function () { void (0) }
</script>