Hi, I'm using Bruce's password protect script to prevent unauthorised access to one of my asp pages using the correct previous page set-up.
I have got this working on other pages before but this is the first time with a Dream Weaver .asp file.
Keep getting an error message instead of the page loading which I assume is because I'm using a combination of Jscript and Java? I THINK??? Is there a simple answer?
Any help would be appreciated for this novice.
OPENING SCRIPT FOR MY ASP PAGE
%
'If the session variable is False or does not exsist then redirect the user to the unauthorised user page
If Session("blnIsUserGood") = False or IsNull(Session("blnIsUserGood")) = True then
'Redirect to unathorised user page
Response.Redirect"unauthorised_user_page.htm"
End If
%>
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
Edited by mouse