首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

GridView1 控件 里面的数据怎么居左对齐

2012-04-08 
GridView1 控件 里面的数据如何居左对齐asp:GridView IDGridView1 runatserver CellPadding4 Fo

GridView1 控件 里面的数据如何居左对齐
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" Width="100%"
  DataKeyNames="PKID" GridLines="Both" AutoGenerateColumns="false" OnRowCommand="GridView1_RowCommand"
  OnRowDataBound="GridView1_RowDataBound"> 
<asp:BoundField HeaderText="提单单号" DataField="BLCODE" ><ItemStyle HorizontalAlign="Left" /></asp:BoundField>
这样没有反应

[解决办法]
你给那个要居右显示的列添加CssClass属性,值随便起一个,比如CssClass="juyou",就像下面这样:
<asp:BoundField DataField="CompanyID" HeaderText="会员ID" >
<ItemStyle CssClass="juyou" />
</asp:BoundField>
----------------------------
然后你就在你的style种这么写:
<style>

//css写在这里
#GridView1 td{text-align:left}
.juyou{text-align:right;}
</style>

热点排行