从 PartialView 中调用 HtmlHelper 的扩展方法

发布于 2024-12-02 16:08:38 字数 551 浏览 0 评论 0原文

我试图从部分视图调用自定义 HtmlHelper 的扩展方法

<%: Html.ToRelativeTime(Model.CreatedDate) %>

,但收到此错误:

CS1061: ...does not contain a definition for 'ToRelativeTime' and no extension method 'ToRelativeTime' 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("Product", Model.Product); %>

PS:当我输入 Html. 时,没有智能。

I'm trying to call a custom HtmlHelper's extension method from a partial view

<%: Html.ToRelativeTime(Model.CreatedDate) %>

and I get this error:

CS1061: ...does not contain a definition for 'ToRelativeTime' and no extension method 'ToRelativeTime' accepting a first argument of type 'System.Web.Mvc.HtmlHelper...could be found (are you missing a using directive or an assembly reference?)

and I'm calling the render code as this:

<% Html.RenderPartial("Product", Model.Product); %>

P.S: When I type Html., there is no intellesince.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

总攻大人 2024-12-09 16:08:38

尝试将扩展的命名空间引用添加到您尝试使用自定义扩展的部分视图

<%@ import namespace='your namespace' %>

这里您可能会找到有用的信息

Try to add namespace reference of your extension to the partial view where you trying to use your custom extension

<%@ import namespace='your namespace' %>

also here you may find a useful information

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