I need to add the hover over the column header. I added the code below on ItemDataBound and ItemCreated. However the hover didn’t work
There is my aspx page:
<asp:templatecolumn HeaderText="# S">
<itemtemplate>
<asp:Label ID="lblTest" runat="server"></asp:Label>
</itemtemplate>
</asp:templatecolumn>
There is my vb code:
Select Case e.Item.ItemType
Case ListItemType.Header
e.Item.Cells(6).Text = "<a href='#' title='" & ConfigurationManager.AppSettings("ColumnHeader") & "'>" & e.Item.Cells(6).Text & "</a>"
End Select
Would you tell me how to fix it. Thanks in advance