多种屏蔽浏览器的后退按钮的方法

80酷酷网    80kuku.com

  按钮|浏览器I have had a lot of people ask, "How to I 慸isable?the back button?" or, "How do I prevent a user from
clicking the back button and going back to the previous screen?" In fact, this is one of the most commonly
asked questions on the ASPMessageboard and, sadly, the answer is quite simple: You CANNOT disable the back
button of the browser.

Initially I could not figure why anyone would want or need to do that. Then it struck me as to why so many
people would want to disable the back button. (Not the forward button mind you only the back button.) When
a user submits an application and then goes back "using the back button" to make a change instead of
clicking on "Edit," a new record will be inserted ?we don抰 want that, now do we? Again if the user
finished a page and then went back to that page and continued to make changes and saved them we would not
want that either.

So I decided to figure a way or ways to prevent this scenario. I started doing a bit of research all over
the Net going into various sites so basically this article will have a lot of stuff you might have already
read if you looked on the Net. I am just trying to put it all in one place and find the "best" way of
doing it!

One of the many suggestions I got was to prevent the page from being cached. This can be done with server-
side script:

<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>



This method works great! It forces the browser to go to the server to get the page instead of from its
cache. What you will want to do is create a Session-level variable that determines whether or not a user
can still "view" the page that you do not want to let the user navigate back to. Since the page is not
being cached on the browser, the page will be reloaded when the user hits the back button, and you can
check for that session-level variable to see if the user can view this page or not.

For example, we could create a form like so:

<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"

If Len(Session("FirstTimeToPage")) > 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the login page
Session("FirstTimeToPage") = ""
Response.Redirect "/Bar.asp"
Response.End
End If

'If we reach here, the user can view the page, create the form
%>

<form method=post action="SomePage.asp">
<input type=submit>
</form>



Note that we are using a Session variable (FirstTimeToPage) to check to see if this is the users first
visit to this particular page. If it isn't (that is, if Session("FirstTimeToPage") contains any value),
then we clear out the session variable and redirect the user back to some starting page. Now, when the
form is submitted (and SomePage.asp is loaded), we must set the session variable FirstTimeToPage to some
value. So... in SomePage.asp we'd need code like:

Session("FirstTimeToPage") = "NO"


Then, if the user, on SomePage.asp, hits the back button, the browser will requery the Web server, see
that Session("FirstTimeToPage") contains some value, clear Session("FirstTimeToPage"), and redirect the
user to some page. All of this hinges, of course, on the fact that the user has cookies enabled, else
session variables won't work! (For more information on this subject, be sure to check out the FAQ: For
session variables to work, must the Web visitor have cookies enabled?)

You can also use client-side code to force the user's browser to not cache a Web page.

<html>
<head>
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
</head>



There are a couple things to keep in mind when using the above method to force a browser to not cache a
Web page:


Pragma: no-cache prevents caching only when used over a secure connection. A Pragma: no-cache META tag is
treated iden

分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: