是否可以创建一个在 Eval Page 中使用的通用 Util 函数
我当前正在将可为空位列绑定到列表视图控件。当您声明列表视图项时,我需要处理使用 null 值而不仅仅是 true 或 false 的情况。
<asp:Checkbox ID="Chk1" runat="server"
Checked='<%# HandleNullableBool(Eval("IsUsed")) %>' />
然后在页面中,我在 ASPX 页面内添加一个 HandleNullableBool() 函数。
protected static bool HandleNullableBool(object value)
{
return (value == null) ? false : (bool)value;
}
这工作正常,但我需要在几个页面中使用它,所以我尝试使用静态 HandleNullableBool 创建一个实用程序类。但在asp页面中使用却不起作用。有没有办法在另一个类而不是 ASPX 页面中执行此操作?
<asp:Checkbox ID="Chk1" runat="server"
Checked='<%# Util.HandleNullableBool(Eval("IsUsed")) %>' />
I am currently binding a Nullable bit column to a listview control. When you declare a list view item I need to handle the case when the null value is used instead of just true or false.
<asp:Checkbox ID="Chk1" runat="server"
Checked='<%# HandleNullableBool(Eval("IsUsed")) %>' />
Then in the page I add a HandleNullableBool() function inside the ASPX page.
protected static bool HandleNullableBool(object value)
{
return (value == null) ? false : (bool)value;
}
This works fine but I need to use this in several pages so I tried creating a utility class with a static HandleNullableBool. But using it in the asp page does not work. Is there a way to do this in another class instead of the ASPX page?
<asp:Checkbox ID="Chk1" runat="server"
Checked='<%# Util.HandleNullableBool(Eval("IsUsed")) %>' />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地编写
要回答您的问题,您需要包含包含该类的命名空间,如下所示:(在文件顶部)
您也可以在 Web.config 中执行此操作:
You can simply write
To answer your question, you need to include the namespace that contains the class, like this: (at the top of the file)
You can also do this in Web.config: