从 ASP.NET 表单访问静态类
我正在使用 <%# MyFormatClass(Eval("fieldname")) %>在我的页面上的网格视图中显示数据。 MyFormatClass 工作正常,但现在我想将其移动到可供许多页面使用的中心位置。当我尝试访问类 <%# Utils.MyFormatClass(Eval("fieldname")) %>它不再起作用了。这是我们被允许做的事情吗?
I am using <%# MyFormatClass(Eval("fieldname")) %> to display data in a grid view on my page. MyFormatClass works fine, but now I want to move it to a central location that can be used by many pages. When I try to access the class <%# Utils.MyFormatClass(Eval("fieldname")) %> it no longer works. Is this something we are allowed to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您没有提供太多信息,这只是一个猜测,但也许您只需将
Utils
类放在 App_Code 文件夹中即可;那里的所有代码都将被编译为可供所有页面使用的程序集。As you don't provide much information this is just a guess, but maybe you need simply to put your
Utils
class in your App_Code folder; all the code there will be compiled to an assembly that is available to all your pages.