In this tutorial, I will explain how to create the asp.net MVC web application. before this tutorial please go through the previous articles. it will give brief information about asp.net architecture and advantages.
Steps to create the application in visual studio 2015
- Open the Visual studio 2015
- Select the File Menu and click on New
- Click on Project (after click you can find the one popup window)
- Select the Required Language ( Choose the Visual C#) at left Pane
- Choose the Asp.Net Web Application(.NET Framework) at the middle pane
- Give the Project Name, Location, Solution Name and Framework at Down Pane.
- Click the OK button.
- Now you get one more Popup window to choose the MVC and click OK Button.
- you can change the Authentication at the 8th step by clicking at change authentication
- finally click OK button at step 8 then visual studio creates the simple MVC Project.
- Press F5 to run the project in debug mode.
- Ctrl + F5 to run the project without debugging
Open The Visual Studio
Step 2
Select Language and technology.
Step 3
Give the Project Name and Location
Step 4
Select MVC
Step 5
Final Project
Step 6
Application OutPut
creating asp.net MVC web application is easy in visual studio. and you can find the application structure and it contains the different folders like App_Data, App_Start, Content, Controller, Model, Script, and Views. and two more files are very important in this structure. one is Global.asax and Web.Config files. These two files play the main roles in asp.net MVC application.
Post a Comment (0)