我正在将我的Preview 5应用程序升级到Beta 1,而我几乎在这里保存这个错误,当尝试渲染控件时:
‘System.Web.Mvc.HtmlHelper’ does not
contain a definition for
‘RenderPartial’ and no extension
method ‘RenderPartial’ accepting a
first argument of type
‘System.Web.Mvc.HtmlHelper’ could be
found (are you missing a using
directive or an assembly reference?)
<% Html.RenderPartial("Controls/UserForm",ViewData); %>
我试过使用Microsoft.Web.Mvc,但没有用.有没有人知道Html.RenderPartial在哪里,或者可以使用什么方法?
解决方法
并且不要忘记添加如下的命名空间到web配置,我认为预览5默认的web.config没有System.Web.Mvc.Html里面:
<namespaces> <add namespace="System.Web.Mvc"/> <add namespace="System.Web.Mvc.Ajax"/> <add namespace="System.Web.Mvc.Html"/> <add namespace="System.Web.Routing"/> <add namespace="System.Linq"/> <add namespace="System.Collections.Generic"/> </namespaces>