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