Here is the data bound column I need help with. More of the code and an explanation is shown below.
<asp:BoundColumn DataField="SSNID" SortExpression="SSNID" HeaderStyle-ForeColor="black" HeaderText="SSN. ID"></asp:BoundColumn>
Basically I am working with a DataGrid control (Note, NOT a GridView control). I have a bound column below for the social security column, "SSNID". When the application user
places their mouse cursor over the column header SSN. ID, I would like for the text color to change to a different color, like blue. Also it would be nice
if the cursor changes to a hand icon on hover. However just getting the text color to change on MouseOver is my main requirement right now that I am trying
to fulfill. Does anyone know how to do this?
<asp:DataGrid ID="dgGridLIst" runat="server" Width="700px" CssClass="mainbody" PageSize="25" AutoGenerateColumns="False" AllowPaging="True" OnSortCommand="Sort_DataGrid" AllowSorting="true" PagerStyle-PrevPageText="Prev" PagerStyle-NextPageText="<img src='~/images/cssgrid.gif' " OnPageIndexChanged="dgGridLIst_PageIndexChanged" OnItemCreated="dgGridLIst_ItemCreated">
<HeaderStyle Font-Bold="True"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:HyperLink ID="HyperLink2" runat="server" Text="Select" NavigateUrl='<%#: GetRequestId(DataBinder.Eval(Container.DataItem, "SSNID").ToString()) %>' Target="_blank">Select</asp:HyperLink>
</ItemTemplate>
</asp:TemplateColumn>
<asp:BoundColumn DataField="SSNID" SortExpression="SSNID" HeaderStyle-ForeColor="black" HeaderText="SSN. ID"></asp:BoundColumn>
<asp:TemplateColumn HeaderText="Stat.">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" >
<%# GetStatusDescription(DataBinder.Eval(Container.DataItem, "REQUEST_STS").ToString()) %>
</asp:Label>
</ItemTemplate>
</asp:TemplateColumn>