我不知道如何将可空的布尔字段绑定到ASP.net中的RadioButton。
以下代码适用于非可空字段
<asp:RadioButton ID="rbStatus" runat="server" Text="Accepted" Checked='<%# Bind("Status") %>' />
你能告诉我如何将可以为空的布尔字段绑定到RadioButton吗?
提前致谢
答案 0 :(得分:1)
这是不可能的,遗憾的是,您只能对非可空值使用Bind()
语法。它接受参数的内容是fairly limited。与DataBinder.Eval
不同,{{3}}只是一种方法调用。