First off lets be clear on the problem.
DataGrid is an object used mostly in .NET1.x windows applications.
Are you using that object? Or possible DataGridView(wi ndows app .NET2.0+) or GridView(web applications)?
Each of those objects has a number of different properties which can be set to handle the colorization of your object.
I would guess that you are using a GridView, based on the CSS discussion. Take a look at the RowStyle, EditRowStyle, PagerStyle and any/all other Style properties on the object.
Comment