The text value of the currently selected item in the list control.
Note that this reflects the Value property of the control - you can read the value on a POSTBACK or set it at anytime during the page cycle, to effectively set the selected value of the list that is displayed highlighted.
To select a selection from the listbox:
lcCustomerId = this.lstCustomers.SelectedValue
To set the listbox to show with a value selected:
this.lstCustomers.SelectedValue = user.LastCustomer
To get or set multiple selections use the wwWebListControl::SelectedValues collection instead.
See also:
Class wwWebListControl | wwWebListControl::SelectedValues© West Wind Technologies, 1996-2024 • Updated: 04/15/12
Comment or report problem with topic