问题描述
如题.
解决方案
解决方案二:
style=""
解决方案三:
点击gridview,编辑列!就可以设置宽度
解决方案四:
在html代码中<asp:BoundFieldDataField="au_id"HeaderText="au_id"ReadOnly="True"SortExpression="au_id"style='width:80px'/>或是<asp:BoundFieldDataField="au_id"HeaderText="au_id"ReadOnly="True"SortExpression="au_id"width=80px/>
解决方案五:
<asp:GridViewID="GridView1"runat="server"><Columns><asp:BoundFieldItemStyle-Width="123px"/></Columns></asp:GridView>
解决方案六:
设置每列属性ItemStyle-Width
解决方案七:
点击gridview,编辑列,可以设置宽度或者代码中:<ItemStyleWidth="100px"/><ControlStyleWidth="100px"/><HeaderStyleWidth="100px"/>
解决方案八:
果然是这样,谢谢哈!!!!!!!!!!!!!!!!!!!!!!!!!!
时间: 2024-10-23 16:39:17