If the variable that is use to check if the user is logged in is:
If Authenticated = 0 Then
Response.Redirect "Login.asp"
End if
In this case if "Authenticated = 1" then the user is allowed access to the pages with this code,
otherwise they are redirected to the login page.
Now you want to have a separate login test, then you need to rename "Authenticated" to something
different, such as "Authenticated2" for those set of pages.
Also, ASP sessions do not cross FP subwebs, so if you have the login for each set of page in their
own unique subweb with a unique database, then you wouldn't have to change anything.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
"Beefminator" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> What do you mean by "change the name of variable" ?
>
> Forgive me Tom, I am not very good at Frontpage. Thanks for putting up
> with me.
>