我在VS2005上使用ASP.NET C#。ASP.NET設置GridView列最大寬度大小
我有一個名爲Description
的列的GridView表,並且由於輸入總是非常長,所以描述在水平方向上很長。
我希望GridView的所有列都有最大寬度大小。
我嘗試了很多方法,但都沒有工作。
ItemStyle-Width="50px"
,
HeaderStyle-BorderWidth="50px"
,
HeaderStyle-Width="50px"
,
RowStyle-Width="50px"
,
Width="50px"
下面是我的GridView的代碼片段:
<asp:GridView ID="GridView1" AutoGenerateEditButton="True" ondatabound="gv_DataBound" runat="server" DataSourceID="SqlDataSource1">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="UserSelector" OnCheckedChanged="UserSelector_CheckedChanged" ondatabound="gv_DataBound" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
任何人都知道如何根據我的情況調整GridView列的大小?
這爲我工作:http://stackoverflow.com/a/17457296/2415524 – mbomb007