當用戶將鼠標懸停在gridview列中的列標題上時,例如:列標題年,當我懸停時,我應該看到那年的意思是「這是學生加入學院的那一年等等」。如何在網格視圖列標題上的鼠標上添加工具提示
下面是我的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>
請讓我知道我怎麼可能有懸停在我的GridView的列標題的文本或提示。 謝謝,
這樣做的單元格,頭怎麼樣? – SearchForKnowledge
發佈的鏈接crs0794是將工具提示添加到標題的絕佳方式。值得一讀。 – Doreen