Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有位列组的表(如果在 UI 中选中复选框,则为 1,否则为 0)
<asp:CheckBox Runat="server" ID="chkCodeAppl" Checked='<%# DataBinder.Eval(Container.DataItem, "Group") %>' />
我写了一个选择此列的 sp。但是在运行时它会给出错误“指定的演员表无效”。
请建议
尝试在绑定代码之前添加(布尔):
<asp:CheckBox Runat="server" ID="chkCodeAppl" Checked='<%# (bool)DataBinder.Eval(Container.DataItem, "Group") %>' />