码迷,mamicode.com
首页 > Windows程序 > 详细

C#_控件——DropDownList

时间:2015-01-29 14:18:37      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

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 = 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

标签:

原文地址:http://www.cnblogs.com/slu182/p/4259601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!