First time for me using the ListView control. here is my HTML:
<asp:ListView ID="lvDownloads"
runat="server"
AutoGenerateColumns="false"
EmptyDataText = "No files uploaded"
DataKeyNames="DownloadId"
onselectedindexchanging="lvDownloads_SelectedIndexChanging"
OnItemDataBound="lvDownloads_ItemDataBound">
<LayoutTemplate>
<ol>
<asp:PlaceHolder runat="server" ID="itemPlaceholder"></asp:PlaceHolder>
...
Go to the complete details ...