password registration in FP2000

C

CJ

I am trying to use Knowledge article #321503. The logon
page never comes up when I go to a secure page. What could
I be overlooking? Thanks for any help
 
M

MD WebsUnlimited.com

CJ,

What code do you have in the .inc file?


This is the code that control it.
If Len(Session("UID")) = 0 Then
' Are you currently on the logon page?
If LCase(LOGON_PAGE) <> LCase(Request.ServerVariables("URL")) Then
' If not, set a session variable for the page that made the request...
Session("REFERRER") = Request.ServerVariables("URL")
' ...and redirect to the logon page.
Response.Redirect LOGON_PAGE
End If
End If


You may wish to take a look at Page Protector Pro at
http://www.websunlimited.com/order/Product/PagePro/pagepro.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top