2012-12-08 222 views
0

enter image description heregridview的表中設置寬度

我使用「的GridView」綁定數據時用戶從下拉列表中選擇,我的問題是「註釋」欄中的出表範圍的當用戶輸入太在「評論」中有很多詞,任何人都可以幫我解決它嗎?

+0

我還沒有這樣做,但在asp.net論壇,其書面,我們可以使用GridView1.Columns [1] .ItemStyle.Width =新單元(10)手動控制的列中的GridView寬度;或另一種方法是column.ItemStyle.Width = Unit.Pixel(100); –

+0

http://stackoverflow.com/questions/13772529/how-to-change-the-gridview-width-and-rename-the-header-after-binding-data 我做這在以前可是不行,錯誤是「索引超出範圍」 – user1848681

+0

您的數據集中沒有表,因此它的給定索引超出範圍 – Sohail

回答

1

您可以創建一個css類,以在修復長度後包裝單詞。

<style type="text/css"> 
    .DisplayDesc { width:250px;word-break : break-all } 

</style> 

將此類的GridView

<asp:Label CssClass="DisplayDesc" ID="Label1" runat="server" Text='<%# Bind("TransText") %>'></asp:Label> 

未經測試,但可能這可以幫助你。

+0

thx它幫助了很多 – user1848681