4

'~/Areas/SomeArea/Views/List/Index.cshtml' 处的视图必须派生自 ViewPage、ViewPage、ViewUserControl 或 ViewUserControl。

项目结构几乎是默认的。有一个区域称为 SomeArea。它有一个名为 List 的控制器。它什么都不做,除了:

public ActionResult Index()
{
   return View("~/Areas/SomeArea/Views/List/Index.cshtml");
}

视图如下所示:

@inherits System.Web.Mvc.WebViewPage<dynamic>

@{
    View.Title = "Index";
    LayoutPage = "~/Views/Shared/_Layout.cshtml";
}

<h2>Index</h2>

我曾尝试逐部分清空整个文件,但似乎没有任何帮助。如果我创建一个控制器并在该区域之外查看它就可以了。是否有可能默认的剃刀视图引擎目前不支持区域?

编辑:区域已注册。

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}/{id}", // URL with parameters
        new { controller = "Random", action = "Index", id = UrlParameter.Optional } // Parameter defaults
    );
}

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    RegisterGlobalFilters(GlobalFilters.Filters);
    RegisterRoutes(RouteTable.Routes);
}

public override void RegisterArea(AreaRegistrationContext context)
{
    context.MapRoute(
        "SomeArea_default",
        "SomeArea/{controller}/{action}/{id}",
        new { controller = "List", action = "Index", id = UrlParameter.Optional }
    );
}
4

2 回答 2

2

来自 ASP.NET 论坛的回答:

http://forums.asp.net/t/1593209.aspx

这解决了问题。感谢回复者!

于 2010-08-23T20:09:01.337 回答
0

收到错误“'~/Views/Page/home.aspx' 处的视图必须派生自 ViewPage、ViewPage<TViewData>、ViewUserControl 或 ViewUserControl<TViewData>”类似的问题,可能会对您有所帮助。另外,您是否在 global.asax 中注册了您的区域?

于 2010-08-22T17:29:22.480 回答