我得到了RadioButtonList
定义的ListItems
:
<asp:RadioButtonList ID="RblSpouseLocation" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Text="In Country" Value="0"></asp:ListItem>
<asp:ListItem Text="Outside of Country" Value="1"></asp:ListItem>
</asp:RadioButtonList>
我的数据库中有SpouseLocation
类型的字段“bit
”。我需要将RadioButtonList
的选定值绑定到此字段。
我在代码隐藏中找到了如何执行此操作的教程,但可以在aspx
中完成吗?
答案 0 :(得分:1)
我将我的数据库字段类型更改为int并添加了&#34; SelectedValue =&#39;&lt;%#Bind(&#34; SpouseLocation&#34;)%&gt;&#34;到我的radiobuttonlist
this问题的答案帮助了我