Hi Paladine,
Am new to ASP.NET. I followed all the steps which you had given for Login Page and Registration Page. Everything is working properly. Thank you so much.
Paladin, I need one help from you, as per you steps I created one table called "tblUser". In this table U_id is auto number(In this same table I added additional two fields FirstName, LastName for Registration Page purpose). In your stored procedure sp_RegisterNewUser, you have used four fields username, password, Firstname and Lastname, so these four fields only inserting in the table. The first column U_id is inserting null value only. Can you advice me, how to auto increment U_id field while inserting every record.
My table structure:
Table Name: tblUser
U_id Integer (9)
U_Name VARCHAR(50)
U_Password VARCHAR(50)
FirstName VARCHAR(50)
LastName VARCHAR(50)
Advance Thanks Paladine.