Hi,
on your GridView set the CssClass="mytable"
then in css:
.mytable tr td{
border: solid 1px #000000;
}
That applies a solid one pixel border to all tds within your gridview table. if you have a header row you mite need to add:
.mytable tr th,
.mytable tr td{
border: solid 1px #000000;
}
thanks,
David Kiff
http://DavidKiff.co.uk-- "Mark As Answer" If my reply helped you --