English 中文(简体)
MVC Framework - Folders
  • 时间:2024-09-17

MVC Framework - Folders


Previous Page Next Page  

Now that we have already created a sample MVC apppcation, let us understand the folder structure of an MVC project. We will create new a MVC project to learn this.

In your Visual Studio, open File → New → Project and select ASP.NET MVC Apppcation. Name it as MVCFolderDemo.

Create MVC Folder Demo Project

Cpck OK. In the next window, select Internet Apppcation as the Project Template and cpck OK.

Create MVC Internet Apppcation

This will create a sample MVC apppcation as shown in the following screenshot.

MVC Folder Project Structure

Note − Files present in this project are coming out of the default template that we have selected. These may change spghtly as per different versions.

Controllers Folder

This folder will contain all the Controller classes. MVC requires the name of all the controller files to end with Controller.

In our example, the Controllers folder contains two class files: AccountController and HomeController.

MVC Controllers

Models Folder

This folder will contain all the Model classes, which are used to work on apppcation data.

In our example, the Models folder contains AccountModels. You can open and look at the code in this file to see how the data model is created for managing accounts in our example.

MVC Models

Views Folder

This folder stores the HTML files related to apppcation display and user interface. It contains one folder for each controller.

In our example, you will see three sub-folders under Views, namely Account, Home and Shared which contains html files specific to that view area.

MVC Views

App_Start Folder

This folder contains all the files which are needed during the apppcation load.

For e.g., the RouteConfig file is used to route the incoming URL to the correct Controller and Action.

MVC App Start Folder

Content Folder

This folder contains all the static files, such as css, images, icons, etc.

The Site.css file inside this folder is the default stypng that the apppcation apppes.

MVC Content Folder

Scripts Folder

This folder stores all the JS files in the project. By default, Visual Studio adds MVC, jQuery and other standard JS pbraries.

MVC Scripts Folder Advertisements