If I were writing my own HTML and placing the values in the table I would use css and style the borders using something like:
td{
border-left : solid gray 1px;
}
If I were writing my own HTML and placing the values in the table I would use css and style the borders using something like:
td{
border-left : solid gray 1px;
}
if you put that css style into your web page, you'll find that your datagrid will use it, since the datagrid control just generates a html table!
of course, you can set the CssClass of the datagrid and make a style just for it as well; you can also fiddle with the row-style properties of the datagridview but css styling is much easier to change/skin later
You might try using the gridrowstyle & alternatinggridrowstyle properties of the datagrid. i would suggest setting them to a CSS class as Steven suggests.