zoukankan      html  css  js  c++  java
  • 关于在vs2005下的gridview中去掉style属性中的bordercollapse:collapse;的方法

    在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-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-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>

  • 相关阅读:
    修改XCode默认注释并自动生成文档
    百度地图初始化引擎失败
    ios系统分享
    ios判断app是否有打开相机的权限
    mac下https方式连接svn连接不上解决方法
    abbyy ocr sdk
    ant的安装
    ubuntu安装nginx
    ubuntu安装gcc
    iOS保持长时间后台运行
  • 原文地址:https://www.cnblogs.com/weekzero/p/968576.html
Copyright © 2011-2022 走看看