I want to make this whole cell (column) a hyperlink, so when the mouse is moved over it,
the cell back color changes, and you can click any where in the cell to go to the link.
<asp:TemplateField ItemStyle-Width="35%">
<ItemTemplate>
<a href="ProductDetails.aspx?ProductId=<%#Eval("ProductId")%>" style="font-size:14px;">
<%#Server.HtmlEncode(Eval("Name").ToString())%>
</a>
</ItemTemplate></asp:TemplateField>
How can I do this? thanks