|
|
| REGISTER WITH ASP |
|
It is often use for a login system to avoid some users. The user is often stored
in a register site. In this tutorial I will show you how to register users in a
user table.
|
The User table
|
|
I call the table that contains the users for myUsers. This has two colums:
Name and Password.
|
display.asp
|
|
I made two texfields; one where you can write your username, and one where you can write
the password. I wrap this into a form and add a submit button. Something like this:
|
|
|
register.asp
|
|
In this file we get the information sendt from display and set it into the database.
Before we do this we check if the username already exist so we do not double register.
|
|
|
|
Category
|
Programming with ASP
|
|
Author
|
Tommy Johannessen
|
|
|
|