At the top of every page you need to check if the user is logged in...
- Code: Select all
If Session("Authenticated") = False Then
Response.Redirect "Login.asp"
End If
The code above would normally be in an INCLUDE file which is included at the top of every page.