如何在 aspx 页面中的代码块中使用扩展方法

发布于 2024-08-26 06:50:46 字数 93 浏览 10 评论 0原文

我有一个扩展方法,可以从 aspx 页面的 .cs 代码隐藏中使用它,但是如果我尝试在 aspx 中的代码块中执行此操作,则它找不到扩展方法。我需要在页面中添加一些内容吗?

I have an extension method which I can use from the .cs codebehind of an aspx page, but if I try to do it in a code block in the aspx, it can't find the extension method. Is there something I need to add to the page?

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

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

发布评论

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

评论(2

妳是的陽光 2024-09-02 06:50:47

适当的 using 指令:

<%@ Import Namespace="NamespaceContainingTheStaticClass" %>

或者更好地在 web.config

<pages>
   <namespaces>
      <add namespace="NamespaceContainingTheStaticClass" />
   </namespaces>
</pages>

The appropriate using directive:

<%@ Import Namespace="NamespaceContainingTheStaticClass" %>

Or even better do it globally in web.config

<pages>
   <namespaces>
      <add namespace="NamespaceContainingTheStaticClass" />
   </namespaces>
</pages>
雾里花 2024-09-02 06:50:46

您需要在页面顶部包含包含扩展方法的命名空间,如下所示:

<%@ Import Namespace="Your.Namespace" %>

您还可以将其全局包含在 Web.config 中:

<pages>
    <namespaces>
        <add namespace="Your.Namespace" />
    </namespaces>
</pages>

You need to include the namespace containing the extension method at the top of the page, like this:

<%@ Import Namespace="Your.Namespace" %>

You can also include it globally in Web.config:

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