ASP.NET MVC Beta 1 - Html.RenderPartial 在哪里?
我正在将 Preview 5 应用程序升级到 Beta 1,除了在尝试呈现控件时出现此错误外,我几乎已经完成了:
“System.Web.Mvc.HtmlHelper”没有 包含一个定义 “RenderPartial”并且没有扩展名 方法“RenderPartial”接受 类型的第一个参数 “System.Web.Mvc.HtmlHelper”可能是 找到了(您是否缺少使用 指令还是程序集引用?)
我的标记(在 .aspx 查看内容页面中)是:
<% Html.RenderPartial("Controls/UserForm", ViewData); %>
我尝试使用 Microsoft.Web.Mvc 但无济于事。 有谁知道 Html.RenderPartial 去了哪里,或者我可以使用什么替代方案?
I'm just in the process of upgrading my Preview 5 application to Beta 1, and I'm nearly there save for this one error when trying to render a control:
'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?)
My markup (in the .aspx View Content Page) is:
<% Html.RenderPartial("Controls/UserForm", ViewData); %>
I've tried using Microsoft.Web.Mvc but to no avail. Does anyone know where Html.RenderPartial has gone, or what alternative I could use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
并且不要忘记将如下所示的命名空间添加到 Web 配置中,我认为预览版 5 默认 web.config 中没有 System.Web.Mvc.Html:
And also don't forget to add namespaces like below to the web config, I think preview 5 default web.config does not have System.Web.Mvc.Html in it:
现在已修复 - 冲突是 Preview 5 和 Beta 1 之间 Web.config 要求的差异。需要将以下内容添加到 system.web 编译程序集节点中: 进行
此更改后,我所有旧的 HtmlHelper 方法神奇地回来了!
Now fixed - the conflict was a difference in Web.config requirements between Preview 5 and Beta 1. The following needs to be added into the system.web compilation assemblies node:
After this change, all of my old HtmlHelper methods magically came back!
除了添加程序集引用之外,我还必须将该行添加
到 web.config 文件中的页面/命名空间部分。
In addition to adding the assembly reference I also had to add the line
to the pages/namespaces section in web.config file.