当前位置:编程学习 > C#/ASP.NET >>

gridview中如何设置行间距

请问如何在gridview中设置行间距呢?
需要实现的效果是,列之间没有间距,而行需要有间距.
所以不能简单的用cellspacing或cellpadding来设置.
请指教! --------------------编程问答-------------------- 点GV中编辑列
在样式中找到ItemStyle
在那个里面设置你自己想要的 --------------------编程问答--------------------
<asp:GridView ID="GridView1" runat="server">
    <RowStyle CssClass="Padding" />
</asp:GridView>


*.css
.Padding
{
    padding:10px;
}
--------------------编程问答-------------------- oo
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,