如何从gridview给gridview第一列左边距?

时间:2011-06-10 04:42:11

标签: c# asp.net

<asp:GridView ID="grdUploadedFiles" runat="server" AutoGenerateColumns="False" AllowPaging="True"
                    PageSize="7" DataKeyNames="ID" OnRowEditing="grdUploadedFiles_RowEditing" OnRowUpdating="grdUploadedFiles_RowUpdating"
                    OnRowCancelingEdit="grdUploadedFiles_RowCancelingEdit" OnRowDeleting="grdUploadedFiles_RowDeleting"
                    ShowFooter="True" ForeColor="Black" GridLines="Vertical" 
                    Width="439px" BackColor="White" BorderColor="#999999" BorderStyle="Solid" 
                     Font-Size="Small" Font-Names="Arial" CellPadding="3" BorderWidth="1px">
                    <Columns>

                        <asp:TemplateField HeaderText="Type" HeaderStyle-HorizontalAlign="Center" >
                            <ItemTemplate>
                                <asp:Label ID="lblType" runat="server" Text='<%# Bind("FileType") %>'></asp:Label>
                            </ItemTemplate>
                             <asp:CommandField ShowEditButton="True">
                            <ItemStyle/>
                        </asp:CommandField></column></gridview>

我正在使用我的gridview的上面的代码。我想给我的第1列填充。我还想在gridview中为我的编辑和删除链接添加下划线。如果我给textuderline ='true“在编辑时显示更新删除单个下划线,看起来很难看。 还有其他办法吗?

1 个答案:

答案 0 :(得分:2)

我建议使用CSS选择器进行样式设置而不是使用控件属性(生成难以维护/更改的内联样式) - 假设您已将css类“myGridView”应用于网格视图,然后使用CSS,例如

table.myGridView
{
  color: black;
  border: solid 1px #999999;
  background-color: white;
  width: 439px;
  font-family: arial;
}

table.myGridView th
{
  // style your column headings
}

table.myGridView td
{
  // style your cells
  padding: 3px;
}

table.myGridView tr td:first-child
{
  // style the first cell in each row
  padding-left: 10px;
}