top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the ASP.NET MVC folder conventions?

0 votes
282 views
What are the ASP.NET MVC folder conventions?
posted Sep 13, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

ASP.NET MVC is a framework that focuses on convention over the configuration. The folder structure is very essential for every framework to see:

-App_Data: this contains the database files like local instance SQL server express database files.

-Content: it contains the static content that is used for the web application building like CSS, images, etc.

-Controller: it contains the controller classes that are used in ASP.NET MVC architecture.

-Models: it consists of the model classes that are used to interact with the content and go in sync with the MVC architecture of the ASP.NET.

-Scripts: JavaScript files that include the AJAX library and jQuery script files.

-Views: it contains the frontend view that will be seen after the model is rendered.

answer Sep 15, 2016 by Shivaranjini
...