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
);