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 6934707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:59:43+00:00 2026-05-27T11:59:43+00:00

I set the default route object to a controller (Beheer) inside an area (also

  • 0

I set the default route object to a controller (“Beheer”) inside an area (also called “Beheer”).

Like this:

routes.MapRoute(
                "Default", // Route name
                "{controller}/{action}/{id}", // URL with parameters
                new { controller = "Beheer", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

It can find that controller and the action fine inside the Area, but it can not find the view because it only looks in these locations:

~/Views/Beheer/Index.aspx
~/Views/Beheer/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
~/Views/Beheer/Index.cshtml
~/Views/Beheer/Index.vbhtml
~/Views/Shared/Index.cshtml
~/Views/Shared/Index.vbhtml 

While it should be looking in this location:

~/Beheer/Views/Beheer/Index.aspx

How can I make it search for the view there?

I already tried:

routes.MapRoute(
                "Default", // Route name
                "{controller}/{action}/{id}", // URL with parameters
                new { area = "Beheer", controller = "Beheer", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

And I tried this (with namespaces):

    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}/{id}", // URL with parameters
        new { controller = "Beheer", action = "Index", id = UrlParameter.Optional }, // Parameter defaults
        new[] { "Areas.Beheer" }
    );

But nothing changes. It enters the correct action in the correct controller but can’t find the view.

  • 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-27T11:59:44+00:00Added an answer on May 27, 2026 at 11:59 am

    You should add your route in the area registration. BeheerAreaRegistration has a property that sets the area name.

     
        public class BeheerAreaRegistration : AreaRegistration
        {
           public override string AreaName
           {
             get
             {
               return "Beheer";
             }
            }
    
        public override void RegisterArea(AreaRegistrationContext context)
        {
           context.MapRoute( "Default", // Route name
                    "{controller}/{action}/{id}", // URL with parameters
                    new { controller = "Beheer", action = "Index", id = UrlParameter.Optional } // Parameter defaults);
        }
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My routing is set up like this: Route::set('default', '(<controller>(/<action>(/<id>)))') ->defaults(array( 'controller' => 'static', 'action'
I've got the default route set-up: public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute({resource}.axd/{*pathInfo}); routes.MapRoute(
I'm using Kohana 3. Does anyone knows why param('controller') result is NULL. Routing: Route::set('default',
I have this routing defined in my module's init.php; Route::set('store', 'store/<store_id>(/<controller>(/<action>(/<id>)))', array( 'store_id' =>
in my site i want to set default page to open, using this script
I want to set my default Domain name for my site to be given
Based on this documentation , I've implemented a catch all route which routes to
I understood how simple route, default route and root routes are used. But I
The default route in MVC {controller}/{action}/{id} is for the most part quite helpful as
This question is linked to this one How can I set the default of

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.