2011-01-12 179 views
1

我在Gridview控件中的TemplateField標籤中的ItemTemplate標籤中使用標籤控件來顯示我的數據庫的數據字段。 如果數據長度高於100字符,我想要標籤控件不顯示所有數據。GridView控件中的TemplateField標籤中的ItemTemplate標籤中的標籤控件

<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> 

我該怎麼辦?

回答

2

這是最簡單的方法:

Text='<%# Eval("Description").ToString().Substring(0, 100) %>' 
+0

謝謝你,是的這就是正確的 – user329765 2011-01-14 08:48:05