DotNetShoutout - Stories tagged with authetication
5
Shouts

How to create a login page in Aspnet with sqlserver

posted by taanu51taanu51 801 days, 18 hours, 54 minutes ago
Tuesday, March 15, 2011 3:24:55 AM GMT
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)
category: Web Dev | clicked: 2 | 1 comment | | source: taanu51.blogspot.com
tags: C#, authetication, ASPNET