Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have been trying to develop a web application based in asp.net mvc4 by using visual studio 2012. I want use the template already provided by visual studio by adding images which will be slide but I coudn't find how to do that.

second, I have registration databse table created in sql express 2012,
Create Table Registration
(
RegID int IDENTITY(1,1) primary key,
FirstName varchar(50) NOT NULL,
LastName varchar(50) NOT NULL,
Username varchar(50) NOT NULL,
passeword varchar(50)NOT NULL,
Gender varchar(10),
Home_Address varchar(100),
Office_Address varchar(100),
City varchar(25),
State varchar(25),
Zip varchar(25),
Contact_No int ,
Email varchar(25)
);
I need to modify the registartion form already availabele by deafult to have the information available in registartion data base table, how i have to modify it to have those fields and store database?
Posted
Updated 14-May-14 6:20am
v2

1 solution

Do not edit the template unless you are sure you understand how it all works. The proper way to make a new web app is to create a new project based on the Web template (basic Web or MVC), and then modify the source files that are created for you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900