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、それ以外の場合は1)
<asp:CheckBox Runat="server" ID="chkCodeAppl" Checked='<%# DataBinder.Eval(Container.DataItem, "Group") %>' />
この列を選択するspを作成しましたが、実行中に「指定されたキャストが無効です」というエラーが発生します。
提案してください
コードをバインドする直前に (bool) を追加してみてください:
<asp:CheckBox Runat="server" ID="chkCodeAppl" Checked='<%# (bool)DataBinder.Eval(Container.DataItem, "Group") %>' />