日期:2014-05-17  浏览次数:20445 次

数据库设计时,性别用bit类型表示
怎样才能在gridview控件中性别一列用下拉框显示‘男’‘女’

------解决方案--------------------
HTML code

<asp:DropDownList ID="DropDownList1" runat="server">
            <asp:ListItem Value="1">男</asp:ListItem>
            <asp:ListItem Value="0">女</asp:ListItem>           
        </asp:DropDownList>