Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4009034
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:49:41+00:00 2026-05-20T08:49:41+00:00

This is a point of curiosity rather than an actual problem I’m having: how

  • 0

This is a point of curiosity rather than an actual problem I’m having: how does the ASP.NET MVC framework create the appropriate controller and view objects from the string name in the RouteCollection? I’ve tried searching through the actual ASP.NET MVC2 code to figure this out but get lost in the controller factory class.

When I register my routes, I map the first block to the controller, the second to an action, the third to an ID, but how does the program take string names and create new objects?

/Users/Update/15354 = New UserController, executes Update() - how?

The only thing I can imagine working is reflecting through all the classes in the project and creating one that matches the requested name, but then how would you resolve a conflict in class names without knowing which namespace to use?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T08:49:42+00:00Added an answer on May 20, 2026 at 8:49 am

    The standard naming convention “FooController” dictates that all controllers should have the suffix “Controller”; thus, when your current route indicates the controller “Foo”, ASP.NET MVC examines the types within your application which inherit from Controller and looks for one whose name matches “Foo” + “Controller”.

    You are correct to assume that ASP.NET MVC is using reflection to find the desired controller, but it is a relatively low impact because the reflection data is cached by the application during its initial startup.

    If you have two controllers with the same name and different namespaces, you can use the alternative form of MapRoute() to indicate which controller you intend to resolve.

    routes.MapRoute(
        "Error_ServiceUnavailable",
        "error/service-unavailable",
        new { controller = "Error", action = "ServiceUnavailable" },
        new[] { "Controllers" }
    );
    
    routes.MapRoute(
        "Admin_Error_ServiceUnavailable",
        "admin/error/service-unavailable",
        new { controller = "Error", action = "ServiceUnavailable" },
        new[] { "Areas.Admin.Controllers" }
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have create a module which at this point does nothing but exist the
This question is more out of curiosity than a real problem. Consider the following
The behavior described here appears to now be the default for ASP.NET MVC 2
At this point I'm not sure if these leaks might be CoreData related or
Up to this point we have not yet needed a new masterpage for our
I'm convinced at this point that I should be creating subclasses of std::exception for
I've edited this quite a bit and bolded my question at this point. I
I want to build a 2 dimensional (non ragged at this point) object array.
I am faced with the following issue and at this point I feel like
It seems (at least that is our understanding of the issue at this point)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.