Access Database Use

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 
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
 

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

Similar Threads

Database 1
Database Editor 4
Database results error 3
Linking a Form to an Access Database 4
Eeek! I am forbidden access? 12
Multiple access to database via asp 9
database access error 1
Windows 10 W10 password prob. 2

Back
Top