ASP.Net MVC视图无法看到HtmlHelper扩展方法

发布于 2024-08-26 14:49:35 字数 583 浏览 9 评论 0原文

我们正在阅读一本 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尛丟丟 2024-09-02 14:49:35

您是否在 web.config 中添加了对 MvcBookApplication 命名空间的引用?

Have you added a reference to MvcBookApplication namespace in your web.config ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文