当用户将鼠标悬停在 gridview 中列的列标题上时,例如: Column Heading Year,当我将鼠标悬停在 Year 上时,我应该看到该年份的解释“这是学生加入大学的年份等”。
下面是我的 ascx 代码:
<asp:GridView ID="grdView" runat="server" Width="900px" AutoGenerateColumns="False"
AllowPaging="true" AllowSorting="true" CellSpacing="0" CellPadding="5" PageSize="20"
OnRowDataBound="grdView_RowDataBound">
<Columns>
<asp:TemplateField HeaderText="ID Number" ItemStyle-Width="90px" >
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("ID")%'></asp:Label>
</ItemTemplate>
</asp:TemplateField><asp:BoundField DataField="StudentName" HeaderText="StudentName"> </asp:BoundField>
请让我知道如何将鼠标悬停在网格视图的列标题上的文本或工具提示上。谢谢,