Access Database Use

K

KP

Hi, I hope you are having a great day.

Is there a way to use an Access database to verify a user login to a webpage? For example, have someone enter a user id and password and have it verified through Access and then return page based on that verification.

Thanks in advance.

KP
 
K

Kevin Spencer

Here's a link to a tutorial I did on that very subject (using ASP):

http://www.takempis.com/pword.asp

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

KP said:
Hi, I hope you are having a great day.

Is there a way to use an Access database to verify a user login to a
webpage? For example, have someone enter a user id and password and have it
verified through Access and then return page based on that verification.
 
M

Mike Mueller

Yes. I use this method for authentication. All of your
protected pages would need to be ASP pages. The following
would need to be at the top of all pages

<%
If Session("bolAuthenticated") = False Then
Response.Redirect "login.asp"
End If
%>

You would then need a login page and a validation page.
Samples available upon request by emailing to
mmueller at lannonfire dot com


Mike


: Hi, I hope you are having a great day.
:
: Is there a way to use an Access database to verify a user
login to a webpage? For example, have someone enter a user
id and password and have it verified through Access and then
return page based on that verification.
:
: Thanks in advance.
:
: KP
 
Top