我正在尝试使用使用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。
解决方法
我得到它的工作我按照
http://www.codewrecks.com/blog/index.php/2009/04/05/could-not-load-type-systemwebmvcviewpage/的指示,这对我来说是个窍门。我应该注意到,我也升级到ASP.NET MVC 2.0 RC截至2010年3月17日。问题依然存在,直到我按照该页面上的说明为止。我不知道一个新的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,PublicKeyToken=31BF3856AD364E35" userControlBaseType="System.Web.Mvc.ViewUserControl,PublicKeyToken=31BF3856AD364E35"> <controls> <add assembly="System.Web.Mvc,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,你需要更新配置中的版本#。