C#_控制項——DropDownList

來源:互聯網
上載者:User

標籤:

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.