Hellow Friends,
Now I am going
to describe how to create your Simple Register
form, Login form and How to make CRUD Operation which is very interesting
concept in asp.net using C# with mvc4
platform .It is very intresting concept in mvc.So Please Follow the steps.
Step-1
First create
a table in your sql server database(suppose table name is userinfo) like this:
Step-2
Create a store procedure which name is sp_insertpro:
create Procedure sp_insertpro
(
@name varchar(50)=null,
@emailid varchar(50)=null,
@password varchar(50)=null,
@age varchar(50)=null,
@address varchar(50)=null
)
AS
Begin
set nocount on
begin
Insert Into userinfo(Name,emailid,password,Address)
values(@name,@emailid,@password, @address)
end
End