Asp net vb ListBox selected items

asp.net listbox get multiple selected items
The following asp.net c# example code demonstrate us how can we get ListBox control's selected items programmatically when ListBox selection mode is multiple.

ListBox control 'SelectionMode' property have two possible values 'Multiple' and 'Single'. Multiple mode allow us to select more than one items from ListBox control. When users select items from ListBox which SelectionMode is Multiple, then it is more complicated to get the selected items programmatically at run time.

We can get ListBox selected items on ListBox SelectedIndexChanged event or manually by a Button click without AutoPostBack. To get the ListBox selected items, at first we perform a Linq query to get the ListBox items which ListItem object's 'Selected' property value is 'true'. Then we loop through the selected items collection and display on web browser with items text and value..
listbox-get-multiple-selected-items.aspx
protected void Page_Load[object sender, EventArgs e] { if[!Page.IsPostBack] { //auto height of listbox to remove vertical scrollbar ListBox1.Rows = ListBox1.Items.Count; } } protected void ListBox1_SelectedIndexChanged[object sender, EventArgs e] { //linq query to get all selected items from listbox var items = from ListItem li in ListBox1.Items where li.Selected == true select li; Label1.Text = "you selected....
"; //loop through selected items in listbox foreach[ListItem li in items] { //selected item text and value. Label1.Text +=li.Text + " | "+li.Value + "
"; } } asp.net listbox get multiple selected items

asp.net example - listbox get multiple selected items



More asp.net examples
  • How to databind Label
  • How to add attributes to DropDownList items
  • How to sort DropDownList items
  • How to sort ListBox items
  • How to set ListBox alternate item text and background color
  • How to show horizontal ScrollBar in a ListBox
  • How to count ListBox selected items
  • How to remove selected items from ListBox
  • How to check whether an item exists in a ListBox
  • How to add attributes to a ListBox items

Video liên quan

Chủ Đề