ASP.Net MVC视图无法看到HtmlHelper扩展方法
我们正在阅读一本 ASP.Net MVC 书籍,并且在我们的视图中使用扩展方法时遇到了麻烦。扩展方法如下所示:
using System;
using System.Runtime.CompilerServices;
using System.Web.Mvc;
namespace MvcBookApplication
{
public static class HtmlHelperExtensions
{
public static string JQueryGenerator(this HtmlHelper htmlHelper, string formName, object model);
}
}
我们在视图中使用扩展方法,如下所示:
<%=Html.JQueryGenerator("createmessage", ViewData.Model)%>
问题是,该行代码表示 JQueryGenerator 不是 HtmlHelper 的可识别方法。我相信我们已经在网络项目中设置了正确的引用,但是我们还可以检查其他内容吗?视图没有 using 语句,不是吗?
We're going through an ASP.Net MVC book and are having trouble with using an extenstion method within our view. The Extension method looks like this:
using System;
using System.Runtime.CompilerServices;
using System.Web.Mvc;
namespace MvcBookApplication
{
public static class HtmlHelperExtensions
{
public static string JQueryGenerator(this HtmlHelper htmlHelper, string formName, object model);
}
}
We use the extension method in our view like this:
<%=Html.JQueryGenerator("createmessage", ViewData.Model)%>
The problem is, that line of code says JQueryGenerator isn't a recognized method of HtmlHelper. I believe we've got the correct references set in the web project, but are there other things we can check? There's no using statement for views, is there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 web.config 中添加了对
MvcBookApplication
命名空间的引用?Have you added a reference to
MvcBookApplication
namespace in your web.config ?