我想尝试使用区域(只是尝试)。我在我的项目中添加了一个区域foo
:右键单击项目然后添加区域。该文件夹包含子文件夹,我可以在其中添加控制器、视图、模型等。它还有一个 cs 文件fooAreaRegistration.cs
,用于完成区域的路由。
using System.Web.Mvc;
namespace AreasExample.Areas.foo
{
public class fooAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "foo";
}
}
public override void RegisterArea(AreaRegistrationContext context )
{
context.MapRoute(
"foo_default",
"foo/{controller}/{action}/{id}",
new {controller = "Foo", action = "Index", id = UrlParameter.Optional }
);
}
}
}
Global.asax
已经有在app start中注册区域的功能
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
}
}
}
然后我还创建了一个Foo
已经具有默认Index
操作的控制器,之后我向该操作添加了一个视图。根据context.MapRoute
in fooAreaRegistration.cs
,如果我运行程序并转到此链接http://localhost:54421/foo/Foo
,它不应该工作吗?当我去我的区域foo
和控制器时,它显示了一些错误Foo
。错误说
Server Error in '/' Application.
[A]System.Web.WebPages.Razor.Configuration.HostSection cannot be cast to
[B]System.Web.WebPages.Razor.Configuration.HostSection. Type A originates from 'System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' in the context 'Default' at location 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Razor\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Razor.dll'. Type B originates from 'System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' in the context 'Default' at location 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Razor\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Razor.dll'.
有什么我想念的吗?我需要添加一些东西吗?
编辑:我不确定是否应该删除这篇文章,因为我找到了下面提到的答案。但是对于那些正在阅读同一本书的人(ASP.NET MVC4 in action)可能会有所帮助。
建议?