New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

SelectedIndexChanged

The SelectedIndexChanged fires when you change the selected item. It will fire automatically if the AutoPostBack="True". The event fires before the TextChanged server event.

The event handler receives two parameters:

  1. The instance of the listbox firing the event

  2. An event arguments parameter containing no methods

C#
protected void RadListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
	Label.Text = "You have selected item : " +  RadListBox1.SelectedItem.Text;
}	

See Also

In this article
See Also
Not finding the help you need?
Contact Support