0

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

建议?

4

1 回答 1

1

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

  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
于 2013-05-23T09:54:47.367 回答