Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How does one highlight or de-highlight an item in a listview programmatically
you can use listView1.Items[rownumber].Selected=true; listView1.Select(); rahul
int index = //your index listView1.SelectedIndex = index;