How can I obtain the name of an Area after ASP. NET MVC uses Areas? mvcareas

Source: Internet
Author: User

How can I obtain the name of an Area after ASP. NET MVC uses Areas? mvcareas

This article is intended only for future reference when Area (region) is used in ASP. net mvc projects.

The method to obtain the name of the current Area is:

ViewContext. RouteData. DataTokens ["area"]

In this way, I can use the following three statements to obtain the Area, Controller, and Action currently accessed by the user.

String areaName = filterContext. RouteData. DataTokens ["area"] = null? "": FilterContext. routeData. dataTokens ["area"]. toString (); string controllerName = filterContext. routeData. values ["controller"]. toString (); string actionName = filterContext. routeData. values ["action"]. toString ();

When the user accesses the main site (root directory), filterContext. RouteData. DataTokens ["area"] is null. Therefore, the first sentence of the code above contains a statement to determine whether the value is null.

Related Article

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.