Hi,
Here I need to count number of hits done by user for particular attachement column
how to get the number of hits clicked by the Download Button
This is my Gridview Design
<asp:GridView ID="KMGridView" runat="server" GridLines="None" AutoGenerateColumns="false" DataKeyNames="Category">
<Columns>
<asp:BoundField HeaderText="Category" DataField="Category" />
<asp:BoundField HeaderText="SubCategory" DataField="SubCategory" />
<asp:BoundField HeaderText="FileName" DataField="Filename" />
<asp:BoundField HeaderText="Author" DataField="Author" />
<asp:BoundField HeaderText="CreationDate" DataField="CreationDate" />
<asp:BoundField HeaderText="UploadedBy" DataField="UploadedBy" />
<asp:BoundField HeaderText="UploadDate" DataField="UploadedDate" />
<asp:BoundField HeaderText="Hits" DataField="Hits" />
<asp:BoundField HeaderText="Mail" DataField="Mail" />
<asp:BoundField HeaderText="Download" DataField="Download" />
</Columns>
</asp:GridView>
Can u say now , what should I do for gets NumberOfHits
Thanks & Regards
Tharak