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>