I have a gridview. This is a list of file.
<asp:GridView ID="GridView1"
CssClass="row1"
AllowPaging="True"
AllowSorting="True"
HeaderStyle-CssClass="HeaderStyle"
RowStyle-CssClass="RowStyle"
PagerStyle-CssClass="PagerStyle"
AlternatingRowStyle-CssClass="AltRowStyle"
Width="100%"
PageSize="5" runat="server"
AutoGenerateColumns="False"
DataSourceID="AccessDataSource3"
DataKeyNames="IdDocumento">
<EmptyDataTemplate>
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<thead class="HeaderStyle">
<tr >
<th>Titolo</th>
<th>Data Creazione</th>
<th>Data Aggiornamento</th>
<th>File</th>
<th valign="middle">
<asp:ImageButton ID="cmdNuovoDocumento"
View Complete Post