我有一个 DateTime 数据类型的列。我想在 ASP.NET 的 GridView 中将此列的值显示为是/否。如果 DateTime 字段为“Is Null”,则显示“No”,如果 DateTime 字段列“Is Not Null”则在网格视图中显示“No”如何执行。无论是在 SQL Query 中还是在 GridView 绑定中执行。
我在 GridView 中尝试过,但失败了。我知道下面的代码是错误的,并且在 SQLQuery 中我检查了它的 ISNULL。
<ItemTemplate>
<asp:Label ID="lblOndate" runat="server" Text='<%# Convert.ToBoolean(Eval("OnDate")) ? "Yes" : "No" %>' ReadOnly="true">
</asp:Label>
</ItemTemplate>
帮助赞赏!提前致谢。