
How to disable the "Back" button
My solution has been to make sure a cached page is NOT read, therefore my
asp can have logic to detect funny things. For example, I was getting an
error after a record was deleted, the user could just backup and resubmit
the whole thing again--only the record wouldn't be there. By using the
following header commands, I make sure that they are always excuting my
code:
Response.Expires=-1
Response.CacheControl="NO-CACHE"
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CASH" >
Quote:
> Hi, all
> I'd like to know how to disable the "Back" button on the client's browser
in
> my ASP page, thanks.
> cui