<asp:DetailsView ID="dtl_people" runat="server" AutoGenerateRows="False" DataKeyNames="personID" DataSourceID="dsrc_peopleObject" DefaultMode="Insert" CssClass="table-bordered table-striped" ControlStyle-Width="50%" ControlStyle-Height="200px" OnPageIndexChanging="dtl_people_PageIndexChanging" RowStyle-Wrap="False">
<FieldHeaderStyle Width="15%" />
<Fields>
<asp:BoundField DataField="personID" HeaderText="personID" InsertVisible="False" ReadOnly="True" SortExpression="personID" />
<asp:BoundField DataField="lastName" HeaderText="lastName" SortExpression="lastName" ControlStyle-Width="100%">
</asp:BoundField>
<asp:BoundField DataField="firstName" HeaderText="firstName" SortExpression="firstName" />
<asp:BoundField DataField="address" HeaderText="address" SortExpression="address" />
<asp:BoundField DataField="phone" HeaderText="phone" SortExpression="phone" ItemStyle-Width="350px">
<ItemStyle Width="350px"></ItemStyle>
</asp:BoundField>
<asp:CommandField ShowInsertButton="True" ButtonType="Button" ItemStyle-HorizontalAlign="Left" HeaderStyle-Wrap="False" />
</Fields>
<InsertRowStyle Wrap="true"/>
</asp:DetailsView>
我想删除按钮之间的间隙以及输入详细信息的字段左侧的间隙,谢谢