asp:BoundField 查看带条件的值
我有一个数据视图:
<asp:BoundField DataField="AccontoAutorizzato" HeaderText="Acconto Aut."
SortExpression="AccontoAutorizzato" dataformatstring="{0:C}" />
是否可以隐藏每个条件的值,例如
Visible=<%# ((Int32)Eval("StatoID") < 2) %>
?
谢谢
i have a dataview with:
<asp:BoundField DataField="AccontoAutorizzato" HeaderText="Acconto Aut."
SortExpression="AccontoAutorizzato" dataformatstring="{0:C}" />
is possible hide the values of each with a condition like
Visible=<%# ((Int32)Eval("StatoID") < 2) %>
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以通过以下方式
It's possible with following
Saar 的回答 对我不起作用,因为即使绑定应该返回 true 或 false,解释器实际上也无法将条件结果转换为布尔值。
因此,我使用了明确选择的布尔值:
我希望这可以让其他人在将其应用于可见属性时更容易遇到布尔错误。
Saar's answer did not work for me, because even though the binding should return a true or false, the interpreter could not actually convert the condition result to a Boolean value.
So instead, I used an explicit choice of
Boolean
values:I hope this makes it easier for others struggling with the Boolean error when applying it to a Visible property.