この GridView 列の幅を変更することはできません。これを試しました:
<asp:BoundField DataField="ABC" HeaderText="ABC" SortExpression="ABC" ControlStyle-Width="200%">
またはピクセルとして:
<asp:BoundField DataField="ABC" HeaderText="ABC" SortExpression="ABC" ControlStyle-Width="500px">
または、Boundfield タグ内で次のようにします。
<ItemStyle HorizontalAlign="Center" Width="500px"/>
コードビハインドでもこれを試しました:
Protected Sub GridView3_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView3.RowDataBound
e.Row.Cells(7).Width = 500
End Sub
どうすれば正しくなりますか?