The. net mvc project setting contains the page in Areas as the default start page, mvcareas

Source: Internet
Author: User

The. net mvc project setting contains the page in Areas as the default start page, mvcareas

 

After using vs to create an MVC project, the general default start page is the page corresponding to the --> Controllers --> HomeController --> Index method in the root directory.

Let me first talk about the process of creating Areas:

However, our controller usually creates many files. In this way, we want to create folders to separate these files by business or other classification methods, so we have the concept of region [Areas.

First, create an Areas folder under the root directory, and then create a region under the Areas file, that is, the folder to be classified.

 

Then VS automatically creates the corresponding folder and file configuration,

Create your own controller under the controllers folder and create the corresponding view page under the views folder.

Here, we have created all of them. How can we set the default startup page and point it to the method in our controller?

Set the controller and action, and add areas as follows:

Routes. mapRoute (name: "Default", url: "{controller}/{action}/{id}", defaults: new {controller = "Account", action = "Index ", id = UrlParameter. optional }). dataTokens. add ("Area", "Account ");

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.