asp.net – GridView中的工具提示

前端之家收集整理的这篇文章主要介绍了asp.net – GridView中的工具提示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在gridView列中包含工具提示的最简单方法是什么?

例如,在此列中

<asp:BoundField DataField="short_comment" HeaderText="Comments" ReadOnly="True" SortExpression="short_comment"/>

我想有类似的东西

<asp:BoundField DataField="short_comment" ToolTipDataField="longer_comment"/>

显然ToolTipDataField不存在,但实现该功能的最简单方法是什么?

解决方法

替换为模板
<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>
原文链接:https://www.f2er.com/aspnet/251485.html

猜你在找的asp.Net相关文章