Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Member Database and User Authentication

Status
Not open for further replies.

RamDje

Programmer
Apr 3, 2003
23
US
Hey All,

I am building a site that will have private section as well as public. The member database was given to me in Access. It is basically a contacts database which has First Name, Last Name, Address, Phone and Email. I would like to use the Email addresses as the usernames for the members and have them choose a password when they register. I also need some advice on how to invite existing members to add a password once the site is up and running. Does this make any sense?

RRD
 
[tt]
Sure it makes sense.

The first think you do is create a Register.asp page with an "Insert Record" behavior where new users can create an account

Second
You create a login page with the fields you need and insert a "login user" behavior and in turn creating a cookie with the user's information. (name,address,phone etc...)

Then at the end of the "login user" recorset add something like
<%
recordset code......
if recordset.eof
response.redirect &quot;%>






Delete * from brain Where MaxLevel = &quot;Full&quot; and reaction = &quot;Slow&quot; order by StartOver
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top