日期到的条件绑定
我有一个 asp:TableCell 并希望根据条件将日期绑定到此,这样如果日期是 DateTime.MinValue 它应该显示空值,否则日期。
我想要 asp.net(3.5) C# 中的解决方案。
谢谢
i have a asp:TableCell and want to bind date to this on the basis of condition such that if date is DateTime.MinValue it should display empty value else the date.
i want solution in asp.net(3.5) C#.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你可以在后面的代码中设置值,那就很简单了。
如果无法在后面的代码中显式设置,您可以简单地绑定到 C# 属性或方法。
示例
ASPX - 您的表格单元格
这是否提供了一个指南针来帮助您朝着正确的方向开始?
If you can just set the value in the code behind, then it's very easy.
If not setable explicitly in the code behind, you could simply bind to a C# property or method.
Example
ASPX - your table cell
<asp:TableCell Text="<%= MyDate() %>" .../>
Does this provide a compass to get you started in the right direction?