How to remove cell space in the GridView?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, all

I put a table in a GridView, but there is always space between the table
border and the GridView line, is there anyway to remove the space?

Thank you very much.
 
Hi, all

I put a table in a GridView, but there is always space between the table
border and the GridView line, is there anyway to remove the space?

Thank you very much.

Hi
Define Css Class
with
..myCss
{
margin:0px;
paddding:0px;
}

assign to the gridview's table. and also in gridviews item style set
cell spacing and cellpading to 0

Thanks

Masudur
 
Back
Top