如何在 aspx 页面中的代码块中使用扩展方法
我有一个扩展方法,可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
适当的 using 指令:
或者更好地在 web.config
The appropriate using directive:
Or even better do it globally in web.config
您需要在页面顶部包含包含扩展方法的命名空间,如下所示:
您还可以将其全局包含在 Web.config 中:
You need to include the namespace containing the extension method at the top of the page, like this:
You can also include it globally in Web.config: