Posted on: 10/12/2015 6:24:17 PM | Views : 1018

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 ...