7
<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 分钟后创建会话超时。当会话到期时,用户将被重定向到会话到期页面,后退按钮也将我带到浏览的最后一页。

4

7 回答 7

9

在这里,此 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.aspx 导航回 Default1.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_Init 事件或 Page_Load 事件中编写以下代码行,不要忘记使用 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();
   }

我们需要将此代码放在需要禁用浏览器后退按钮的页面中

于 2013-08-02T05:36:03.990 回答
3
<script type="text/javascript" language="javascript">
    window.onload = function () {
        noBack();
    }
    function noBack() {
        window.history.forward();
    }
</script>
<body  onpageshow="if (event.persisted) noBack();">
</body>

你好,你可以这样做,

在母版页中实现此代码

我已经实现了这个,它对我有用..

于 2013-08-02T05:36:19.500 回答
3
<script language="JavaScript">
this.history.forward(-1);

于 2014-06-17T10:14:31.660 回答
1

单击“注销”时重定向到 Logout.aspx 页面 添加一个新页面作为 Logout.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

于 2015-02-11T15:46:31.360 回答
1

当用户单击注销按钮时,您应该编写单行以清除会话。

Session.Abondon();

并导航到注销页面或登录页面。因此,一旦用户单击注销按钮,他就无法返回,因为他的会话已被清除。

于 2015-05-06T05:31:51.930 回答
0

要禁用浏览器的后退按钮,请在母版页标题部分编写以下代码

<script language="JavaScript" type="text/javascript">
window.history.forward();              
</script>
于 2016-06-09T10:37:39.437 回答
0
 <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>
于 2019-07-27T11:32:11.213 回答