ASP.NET MVC4添加区域视图 找到多个与名为“home”的控制器匹配的类型

时间:2021-07-23 05:56:07

今天在项目中遇到一个问题,在MVC下想建立一个区域的后台Admin视图,出现了"找到多个与名为“home”的控制器匹配的类型"的问题,希望下面的解决方案能够帮助到大家

ASP.NET MVC4添加区域视图  找到多个与名为“home”的控制器匹配的类型这是网站的整体结构,在Areas区域下有一个Admin的管理区域,解决问题只需要将最外层的路由和Admin下的路由设置命名空间就可以了.

这是最外层的路由设置:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace ProductManagement
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new string[] { "ProductManagement.Controllers" }
);
}
}
}

这是Admin下的路由(AdminAreaRegistration.cs)配置:

using System.Web.Mvc;

namespace ProductManagement.Areas.Admin
{
public class AdminAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "Admin";
}
}

public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"Admin_default",
"Admin/{controller}/{action}/{id}",
new { Controller="Home", action = "Login", id = UrlParameter.Optional },
namespaces:new string[] { "ProductManagement.Areas.Admin.Controllers" }
);
}
}
}

两个路由配置的命名空间不同,就可以解决多个控制器匹配的问题了,

ASP.NET MVC4添加区域视图  找到多个与名为“home”的控制器匹配的类型       ASP.NET MVC4添加区域视图  找到多个与名为“home”的控制器匹配的类型