up vote 0 down vote favorite
share [g+] share [fb]

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;
}
link|improve this question

46% accept rate
feedback

2 Answers

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

link|improve this answer
Is this the 'ASP.NET' way of making gridlines or is there a more ASP.NET way of achieving this look? – minty Nov 12 '08 at 19:09
@minty: the asp.net grid control generates a html table on the client side, format it however you like with css, it is very simple. If you would rather set server-side properties (much harder to change later) look at the row-style objects in the property grid – Steven A. Lowe Nov 12 '08 at 19:20
feedback

You might try using the gridrowstyle & alternatinggridrowstyle properties of the datagrid. i would suggest setting them to a CSS class as Steven suggests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.