JCO,
The problem is not with users bookmarking or add the page to their
favorites, the problem is with your validation code that suppose to check if
the user is entitled to access the page.
No matter how the user reaches the page, if they are not logged in at the
time, they need to be re-directed to the login page.
Example:
Login validation page, if the login is successful then set the following
values:
<%
Session("Authenticated") = 1
Response.Redirect ("member.asp")
%>
On the member.asp page, check to see if the Session("Authenticated") is not
0:
<%
If Session("Authenticated") = 0 Then
Response.Redirect ("login.asp")
End IF
%>
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================