首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

RadioButtonList 默许绑定

2013-05-02 
RadioButtonList 默认绑定如何修改控件[解决办法]InfoSex.SelectedValueInfoUpdate.Sex[解决办法]asp:R

RadioButtonList 默认绑定
RadioButtonList 默许绑定
如何修改RadioButtonList 默许绑定
控件
[解决办法]
InfoSex.SelectedValue=InfoUpdate.Sex;
[解决办法]
    <asp:RadioButtonList ID="RadioButtonList1" runat="server">
        <asp:ListItem Value="0">男</asp:ListItem>
        <asp:ListItem Value="1">女</asp:ListItem>
    </asp:RadioButtonList>

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string str="女";
                RadioButtonList1.Text = (str == "男" ? "0" : "1");
            }
        }

热点排行