MVC4:让该区域适合初学者

时间:2013-05-23 08:25:47

标签: asp.net-mvc asp.net-mvc-4 asp.net-mvc-areas

我想尝试使用区域(只是尝试)。我在项目中添加了一个区域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中的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在行动中)可能会有所帮助。

建议?

1 个答案:

答案 0 :(得分:2)

这可能是因为我从互联网上下载了该书的项目,该版本的旧版剃须刀,在我在该项目中创建了一个区域后,它无法将其投射到最新版本的剃刀(我猜)正如视觉工作室中的警告所说:

  Warning   1   D:\Tutorial\mvc4ia-2012-06-


        13\src4\Chapter13\AreasExample\Areas\foo\Views\Foo\Index.cshtml: ASP.NET runtime error: 
        [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__31bf385
        6ad364e35\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__31bf385
    6ad364e35\System.Web.WebPages.Razor.dll'.   D:\Tutorial\mvc4ia-2012-06-
    13\src4\Chapter13\AreasExample\Areas\foo\Views\Foo\Index.cshtml AreasExample