First we have to create a database for storing the login information
Open the Sqlserver Management studio
Create a new database and change the database name as db_Logininformation
Create a New table in that database(dbLogininformation) and change the table name as tabuserinformation
Now, create the following fields
UserID int PrimaryKey
username varchar(50)
Password varchar(50)
Next, Enter the some usernames and paasword directlu in the database for check...
(more)