【问题标题】:ASP.NET MVC Strongly Typed Partial View, gives could not load type errorASP.NET MVC 强类型部分视图,给出无法加载类型错误
【发布时间】:2011-01-28 17:17:41
【问题描述】:

我正在尝试使用使用 Html.RenderPartial() 呈现的“MVC 视图用户控件”创建强类型视图。我的 ascx 文件的顶部如下所示:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.Collections.IEnumerable<string>>" %>

目前此页面上没有其他内容。

当我执行应用程序并加载呈现此控件的页面时,我收到以下错误:

 Could not load type 'System.Web.Mvc.ViewUserControl<System.Collections.IEnumerable<string>>'.

那么,我简化了它:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<String>" %>

然后,以防万一它需要完全限定:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.String>" %>

每次我得到相同的错误(替换类型)。我在这里做错了什么?我在 .NET 3.5 上使用 ASP.NET MVC 1.0 RTM。

【问题讨论】:

    标签: asp.net-mvc .net-3.5 partial-views strongly-typed-view


    【解决方案1】:

    我让它工作了。我按照http://www.codewrecks.com/blog/index.php/2009/04/05/could-not-load-type-systemwebmvcviewpage/ 的说明操作,这对我有用。我应该注意,我还首先从 2010 年 3 月 17 日升级到了 ASP.NET MVC 2.0 RC。这个问题对我来说仍然存在,直到我按照该页面上的说明进行操作。我不确定一个新的 MVC 项目现在是否会为您执行此操作。

    如果引用的页面消失了,解决方案是将 Web.config 添加到我的 Views 目录中,并将其放入其中:

    <?xml version="1.0"?>
    <configuration>
      <system.web>
      <httpHandlers>
        <add path="*" verb="*"
          type="System.Web.HttpNotFoundHandler"/>
      </httpHandlers>
    
    <!--
        Enabling request validation in view pages would cause validation to occur
        after the input has already been processed by the controller. By default
        MVC performs request validation before a controller processes the input.
        To change this behavior apply the ValidateInputAttribute to a
        controller or action.
    -->
    <pages
        validateRequest="false"
        pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
        pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
        userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
      <controls>
        <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
      </controls>
    </pages>
    </system.web>
    
    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <handlers>
      <remove name="BlockViewHandler"/>
        <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
    </handlers>
    </system.webServer>
    </configuration>
    

    我还应该注意,对于 MVC 2.0,您需要更新配置中的版本号。

    【讨论】:

    • 谢谢!我完全忘记复制我的视图文件夹 web.config。我希望这个错误更清楚地表明这是错误的。
    • 哇,同样的问题。我有 web.config - 在我的机器上工作 - 不是我的构建脚本的一部分。
    • 我刚刚创建了一个 MVC2 应用程序并从该 Views 目录中复制了 web.config。谢谢。
    猜你喜欢
    • 2011-04-02
    • 2010-10-12
    • 1970-01-01
    • 2010-11-06
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-08-17
    • 1970-01-01
    相关资源
    最近更新 更多