RadioButtonList控件使用问题
<asp:FormViewID="FormView1"runat="server"><EditItemTemplate><asp:RadioButtonListID="r...
<asp:FormView ID="FormView1" runat="server" >
<EditItemTemplate>
<asp:RadioButtonList ID="rblSex" runat="server" RepeatDirection="Horizontal">
<asp:ListItem>男</asp:ListItem>
<asp:ListItem>女</asp:ListItem>
</asp:RadioButtonList>
</EditItemTemplate>
<ItemTemplate>
........
</ItemTemplate>
</asp:FormView>
上面是我给的片段代码,数据库里表的字段Sex的值是true或false,是男的就true,是女的就false,现在有个问题是:当我点击“编辑”时,想数据库里得到值后,要求在编辑之前,先绑定被选中 这个性别男女,这个怎么做出来的?求高手。 展开
<EditItemTemplate>
<asp:RadioButtonList ID="rblSex" runat="server" RepeatDirection="Horizontal">
<asp:ListItem>男</asp:ListItem>
<asp:ListItem>女</asp:ListItem>
</asp:RadioButtonList>
</EditItemTemplate>
<ItemTemplate>
........
</ItemTemplate>
</asp:FormView>
上面是我给的片段代码,数据库里表的字段Sex的值是true或false,是男的就true,是女的就false,现在有个问题是:当我点击“编辑”时,想数据库里得到值后,要求在编辑之前,先绑定被选中 这个性别男女,这个怎么做出来的?求高手。 展开
2个回答
展开全部
<asp:RadioButtonList ID="rblSex" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="1">男</asp:ListItem>
<asp:ListItem Value="0">女</asp:ListItem>
</asp:RadioButtonList>
这样试试呢!
<asp:ListItem Value="1">男</asp:ListItem>
<asp:ListItem Value="0">女</asp:ListItem>
</asp:RadioButtonList>
这样试试呢!
追问
value="1" ? 没用,我不这样做
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询