日期到的条件绑定

发布于 2024-07-26 22:55:44 字数 131 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨死的猪 2024-08-02 22:55:44

如果你可以在后面的代码中设置值,那就很简单了。

this.myTableCell.text = yourDate > DateTime.MinValue ? yourDate : "";

如果无法在后面的代码中显式设置,您可以简单地绑定到 C# 属性或方法。
示例

ASPX - 您的表格单元格

C# Code Behind ----  this could be a property with get / set accessors or a method
public string MyDate() 
{ 
  DateTime myDateTime = GetDateTime();
  return myDateTime > DateTime.MinValue ? myDateTime.ToString() : "";
}

这是否提供了一个指南针来帮助您朝着正确的方向开始?

If you can just set the value in the code behind, then it's very easy.

this.myTableCell.text = yourDate > DateTime.MinValue ? yourDate : "";

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() %>" .../>

C# Code Behind ----  this could be a property with get / set accessors or a method
public string MyDate() 
{ 
  DateTime myDateTime = GetDateTime();
  return myDateTime > DateTime.MinValue ? myDateTime.ToString() : "";
}

Does this provide a compass to get you started in the right direction?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文