Tuesday 27 January 2015

How To Change Password in asp.net using C#



Hello Friends,
                         Now I am going to describe  how to Change Password in asp.net using C#  in  5 steps:
Step-1:
Create a login table and Insert  data  in this Table  like this:
 
Command of  sql  to  create above Table:
CREATE TABLE [dbo].[login] (
    [EmailId]  VARCHAR (50) NOT NULL,
    [Password] VARCHAR (50) NOT NULL
);

Tuesday 6 January 2015

How to Create Simple Login Form With Use Of Validation in C# Using asp.net:



Hello Friends,
             Now I am Going to describe How to Create   Simple Login Form With Use Of  Validation  in C#  Using asp.net:
Step-1:
Create a login table and Insert  data  in this Table  like this:
Command of  sql  to  create above Table:
CREATE TABLE [dbo].[login] (
    [EmailId]  VARCHAR (50) NOT NULL,
    [Password] VARCHAR (50) NOT NULL
);