zoukankan      html  css  js  c++  java
  • GridView中几个显示数据时! 数据停靠(靠左 or 居中)的问题!

    1.假如下面有一个Gridview,

     <asp:GridView ID="GVData" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
                        BorderStyle="Solid" BorderWidth="1px" OnRowDataBound="GVData_RowDataBound" PageSize="15"
                        Width="100%" CssClass="gridview">
                        <PagerSettings Mode="NumericFirstLast" Visible="False" />
                        <PagerStyle BackColor="LightSteelBlue" HorizontalAlign="Right" />
                        <HeaderStyle BackColor="#006599" Font-Size="12px" ForeColor="White" Height="20px" />
                        <AlternatingRowStyle BackColor="WhiteSmoke" /> 

          <Columns>                      

                           <asp:BoundField DataField="Address" HeaderText="收货地址">
                                  <ItemStyle HorizontalAlign="Left" />                --使包含这个属性的列居左边
                            </asp:BoundField> 

                           <asp:BoundField DataField="ShippingMobile" HeaderText="收货电话" /> --居中

         </Columns>
                        <RowStyle HorizontalAlign="Center" Height="25px" /> --使整个Gridview的行默认居中

     </asp:GridView>

  • 相关阅读:
    【微信小程序】---线上环境搭建
    【vue】---项目接口管理---【巷子】
    【微信小程序】---授权登陆---【巷子】
    【react】---17新增的生命周期
    laravel 管道设计模式
    vim相关
    OAuth 2.0及微信网页授权
    linux下目录的读、写、执行权限辨析
    NIM游戏
    姿态角(欧拉角)yaw、pitch、roll语义解释
  • 原文地址:https://www.cnblogs.com/TanYong/p/5101637.html
Copyright © 2011-2022 走看看