ListView::SelectedIndex Property
Updated: May 2011
Gets or sets the index of the selected item in a ListView control.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
<asp:ListView SelectedIndex="Int32" />
Property Value
Type: System::Int32The zero-based index of the selected item in a ListView control. The default is -1, which indicates that no item is currently selected.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The SelectedIndex property is set to a value less than -1. |
Use the SelectedIndex property to determine the index of the currently selected item in a ListView control. You can also use this property to programmatically select an item in the control. (However, if you manually data-bind the ListView control, you might have to handle reading or setting this property manually as well.)
The following example shows how to use the SelectedIndex property to determine whether an item is selected in a ListView control. This code example is part of a larger example provided for the DeleteItem method.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.