View Single Post
  #7 (permalink)  
Old 06-20-03, 08:03 PM
Gurrutello Gurrutello is offline
Newbie Coder
 
Join Date: Jun 2003
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
hello
its allmost impossible to disble the back button ( only in pop ups with out navigation bar, and dissable right button click)
but if you use in each password protected page
<%
If Session("username") = "" then
Response.Redirect("notallow.asp")
End If
%>

or
<%
If request.cookies("username") = "" then
Response.Redirect("notallow.asp")
End If
%>
this could be ok.
maybe user can go back but they can't do anything
saludos
Reply With Quote