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>

  • 相关阅读:
    21. Node.Js Buffer类(缓冲区)-(一)
    20.Node.js EventEmitter的方法和事件
    19.Node.js EventEmitter
    18.Node.js 事件循环
    17.Node.js 回调函数--异步编程
    16.REPL 命令
    15.Node.js REPL(交互式解释器)
    14.NPM 常用命令
    **PHP Notice: Undefined index:...问题的解决方法
    **CI中的order_by在get_where之前
  • 原文地址:https://www.cnblogs.com/weekzero/p/968576.html
Copyright © 2011-2022 走看看