Gridview 控件中的 TemplateField 标记中的 ItemTemplate 标记中的标签控件
我在 Gridview 控件的 TemplateField 标记中的 ItemTemplate 标记中使用标签控件来显示数据库的数据字段。 我希望如果数据长度高于 100 个字符,标签控件不会显示所有数据。
<ItemTemplate>
<asp:Label ID="label4" runat="server" Text='<%# Bind("Description") %>' Width="200px" Font-Names="B Nazanin" EnableTheming="false" Height="24px" BorderStyle="Dashed"></asp:Label>
</ItemTemplate>
我应该怎么办 ?
I am using a label control in ItemTemplate tag in TemplateField tag in Gridview Control to show a field of data of my database .
I want if a length of data is higher than 100 charachter the label control doens't show all of data.
<ItemTemplate>
<asp:Label ID="label4" runat="server" Text='<%# Bind("Description") %>' Width="200px" Font-Names="B Nazanin" EnableTheming="false" Height="24px" BorderStyle="Dashed"></asp:Label>
</ItemTemplate>
What should I do ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是最简单的方法:
This is the simplest approach: