Ask a Question related to ASP Database, Design and Development.
-
tamilgirl #1
Asp Password protection + Redirect
Hi,
I have a big question. I will explain it in steps -
1) Users login to members section using a member id connected to MS
Access database. A session variable is set for 30 minutes for all
member section pages
2) In member section page there is a page with link, which when
clicked will lead our members to a library page at different server.
We don't have any control on that server.
So this is what we want to do:
Once members click the link to library page, only certain priveliged
members can see the library page, so we want to password protect the
link. Once they click the link, we want ask for userid once again and
for password and then redirect them to library page.
My question is how to incorporate password into the members table,
since only certain priveliged members can view the page. What happens
to session variable which is already set, can i connect to database
again, if so how to do it. There are about 4000 members how to
generate password for all of them, and then how will the library
server know that the person is coming legally from our server
I know the questions are really confusing, but i am sure there are
many genius out there who must have done this before, any help would
be appreciated,
thank you,
tamilgirl
tamilgirl Guest
-
How to add a password protection to PDF?
Hello! I want to disable the copy and paste on a PDF document. I should use the password protection for doing that. The problem is to do this... -
Password Protection
yup. use .httacess. usually we configure custom 404 using .httaccess but it can do more than just that. here's a good site that explain the use... -
Password protection with XML
you need to learn a couple of things... 1) how to send and receive XML data try this link... -
php password protection
I am wanting to set up password protection for an area on my website, so only our members can access this area. I am needing to do this using php... -
password-protection
Something just occurred to me... <yeah, I know, it scared me too> I just password-protected a website by including a password authentication script... -
Tim Williams #2
Re: Asp Password protection + Redirect
store the user's access level in your user table.
when the user logs on store their access level in a session variable
when the user accesses the page with the "restricted" link, check whether
their access level is sufficient and either write out the link or not.
tim
"tamilgirl" <tamilgirl04@yahoo.com> wrote in message
news:f7548af6.0402091523.4f303367@posting.google.c om...> Hi,
>
> I have a big question. I will explain it in steps -
>
> 1) Users login to members section using a member id connected to MS
> Access database. A session variable is set for 30 minutes for all
> member section pages
>
> 2) In member section page there is a page with link, which when
> clicked will lead our members to a library page at different server.
> We don't have any control on that server.
>
> So this is what we want to do:
>
> Once members click the link to library page, only certain priveliged
> members can see the library page, so we want to password protect the
> link. Once they click the link, we want ask for userid once again and
> for password and then redirect them to library page.
>
> My question is how to incorporate password into the members table,
> since only certain priveliged members can view the page. What happens
> to session variable which is already set, can i connect to database
> again, if so how to do it. There are about 4000 members how to
> generate password for all of them, and then how will the library
> server know that the person is coming legally from our server
>
> I know the questions are really confusing, but i am sure there are
> many genius out there who must have done this before, any help would
> be appreciated,
>
> thank you,
> tamilgirl
Tim Williams Guest



Reply With Quote

