在gridView列中包含工具提示的最简单方法是什么?
例如,在此列中
<asp:BoundField DataField="short_comment" HeaderText="Comments" ReadOnly="True" SortExpression="short_comment"/>
我想有类似的东西
<asp:BoundField DataField="short_comment" ToolTipDataField="longer_comment"/>
解决方法
替换为模板
<asp:TemplateField HeaderText="Comments" SortExpression="short_comment"> <ItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# Bind("short_comment") %>' ToolTip ='<%# Bind("longer_comment") %>'></asp:Label> </ItemTemplate> </asp:TemplateField>