One of the hidden listbox in asp.net 2.0

Source: Internet
Author: User
asp.net in asp.net 2.0, you can hide an item in the ListBox, such as
ListItem item = new ListItem (text, value, enabled);
Of course, you can also use

Item. Enabled = false;

Although hidden in the page, but still can use code to access the hidden options, the following is an example

<%@ Page language= "C #"%>



<script runat= "Server" >



protected void Page_Load (object sender, EventArgs e)

{

if (! Page.IsPostBack)

{

listitem[] items = new listitem[]

{

New ListItem ("Item 1", "Value 1"),

New ListItem ("Item 2", "Value 2", false),

New ListItem ("Item 3", "Value 3"),

New ListItem ("Item 4", "Value 4")

};



ListBox1.Items.AddRange (Items);

}



}

protected void Button1_Click (object sender, EventArgs e)

{

foreach (ListItem item in Listbox1.items)

{

Response.Write (item. Text + "enabled=" + item. Enabled + "<br>");

}

}



</script>





<title>untitled page</title>


<body>

<form id= "Form1" runat= "Server" >

<div>

<asp:listbox id= "ListBox1" runat= "Server"/>

<asp:button id= "Button1" runat= "Server" text= "button" onclick= "Button1_Click"/></div>

</form>

</body>





Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.