首页 > 代码库 > C#_控件——DropDownList

C#_控件——DropDownList

1.html

            <asp:CheckBox ID="CheckBox11" runat="server" onclick="changechecked(this)" />车身颜色:            <asp:DropDownList ID="DropDownList5" runat="server">                <asp:ListItem Text="红色" Value="红色的" Enabled="true" Selected="True"></asp:ListItem>                <asp:ListItem Text="绿色" Value="绿色的" />            </asp:DropDownList>

2.code

        protected void Page_Load(object sender, EventArgs e)        {            //Text一般用来前台显示给用户看的            //Value一般用于表单提交,提交给后台的数据            string l5_text = DropDownList5.SelectedItem.Text;//红色            string l5_value = http://www.mamicode.com/DropDownList5.SelectedItem.Value;//红色的            string l5_value1 = DropDownList5.SelectedValue.ToString();//红色的                  string text1= DropDownList5.Items[1].Text;//绿色            string value1 = DropDownList5.Items[1].Value;//绿色的            bool IsSelected = DropDownList5.Items[1].Selected; //绿色的        }

 

C#_控件——DropDownList