在vs2005下用到gridview时,默认的情况下gridview控件会在生成的html代码中的style属性中加入border-collapse:collapse;

先放置一个gridview在aspx文件上,也就是建立一个gridview的应用
<asp:GridView ID="GridView1" runat="server" BorderWidth="0"></asp:GridView>
绑定数据运行后页面中的代码为:
<table cellspacing="0" rules="all" border="0" id="GridView1" style="border-width:0px;border-collapse:collapse;">
        
<tr>
            
<th scope="col">id</th><th scope="col">name</th>
        
</tr><tr>
            
<td>1</td><td>1</td>
        
</tr><tr>
            
<td>2</td><td>2</td>
        
</tr>
    
</table>
gridview控件就自动给加上了:border-collapse:collapse;
要想去掉这个自动加入的代码只要将 CellSpacing="-1"就可以了,加上后html的代码为
<table rules="all" border="0" id="GridView1" style="border-width:0px;">
        
<tr>
            
<th scope="col">id</th><th scope="col">name</th>
        
</tr><tr>
            
<td>1</td><td>1</td>
        
</tr><tr>
            
<td>2</td><td>2</td>
        
</tr>
    
</table>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2021-12-05
  • 2021-10-01
  • 2021-07-14
  • 2021-08-20
猜你喜欢
  • 2022-12-23
  • 2021-06-27
  • 2021-12-13
  • 2021-12-16
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案