I know how to set up listview to highlight a row when you click a link, image, etc but I am just wondering if it is possible to set it up to highlight a row when you click on an
You could use Jquery on the client side:
$("#myTable tr").click( function () { $("#myTable tr").each(function () { $(this).removeClass("selected")}); $(this).addClass("selected"); });
An example fiddle:
http://jsfiddle.net/9pmcA/26/