Gridview分页数字有边框
我用gridview自带的分页,但是分页的时候,显示的数字都带一个边框,我要怎么去掉这个边框啊,我的gridview是放在table内的,因为table有边框
<table width="100%" align="center" cellpadding="1" cellspacing="1" height="50%">
<tr>
<td width="100%">
<div style="overflow:auto; width:100%; border:0">
<asp:GridView ID="gvControlParameter" CellPadding="0" CellSpacing="0" runat="server" Width="100%" Height="100%" UseAccessibleHeader="false" AllowPaging="True" OnPageIndexChanging="gvControlParameter_PageIndexChanging" PageSize="23" OnRowCreated="gvControlParameter_RowCreated">
<RowStyle ForeColor="Black" />
<HeaderStyle BackColor="#E5EDF9" ForeColor="Black" HorizontalAlign="Center" />
</asp:GridView></div>
</td>
</tr>
</table>