M
Matt
I'm currently using my own login/session style access restriction system for
my application. What I'd like to do is restrict access for a certain
directory to registered users only. Is there is a quick-and-easy way to
lock this directory down without having to go to each page in the directory
and put:
if session("userloggedin") <> "" then
'do something
else
response.redirect("/login.aspx")
response.end()
end if
I've looked into Forms Authentication, but I'm not sure how to mesh it with
my current access restriction system.
Thanks.
Matt
my application. What I'd like to do is restrict access for a certain
directory to registered users only. Is there is a quick-and-easy way to
lock this directory down without having to go to each page in the directory
and put:
if session("userloggedin") <> "" then
'do something
else
response.redirect("/login.aspx")
response.end()
end if
I've looked into Forms Authentication, but I'm not sure how to mesh it with
my current access restriction system.
Thanks.
Matt