主题:  RadioButtonList设置问题,较急!

cmoonc

职务:普通成员
等级:1
金币:0.0
发贴:48
#12005/4/27 13:16:19
名为SEX的RadioButtonList有两个选项"男","女"
在编辑数据的页面里RadioButtonList的Selected值要与数据库中的值相同,即在数据绑定时把数据库中"男"或"女"的值通过设置RadioButtonList的Selected来表现出来.不知这个语句该如何写?

在Page_Load里应该有一句:
sex.???????Selected="true"; 这句该怎么写????


<asp:RadioButtonList ID="sex" runat="server" RepeatDirection="Horizontal">
<asp:ListItem >男</asp:ListItem>
<asp:ListItem >女</asp:ListItem>
</asp:RadioButtonList>



cmoonc

职务:普通成员
等级:1
金币:0.0
发贴:48
#22005/4/27 17:43:13
问题解决了,使用SelectedIndex属性

sex.SelectedIndex = (dt.[0]["sex"])?0:1;