I have a listview control populated with names and want to fire the SelectedIndexChange event when a name is selected.
Currently I have a select button associated with each item in the Listview and all works fine.
I want to remove the select button and cause the SelectedIndexChange event to occur when clicking on a name rather than a button.
Any suggestions?
Here's my current code...
Have tried it with and without the following- does not fire the SelectedIndexChange Event
Any help is appreciated...
LB
autopostback="true"
OnSelectedIndexChanged="ListView1_SelectedIndexChanged">
<asp:ListView ID="ListView1"
runat="server"
DataKeyNames="Name, Tel, Cell"
DataSourceID="XmlDataSource3"
auto ...
Go to the complete details ...