I want to have a datagrid, and select the color of the fields background color by what is in the database column. For example, in the database table I have a column that is called Color, and I want the color of the row to show up as the background. Is this possible?
You don't specify type of application u r creating is it web application or window application
for window application there is tablestyle property in datagrid u can use it like this
DataGridTableStyle ts=new DataGridTAbleStyle();
ts.MapplinName="table name by which grid is filled";
//set the properties of ts
//after that add it to grid like this
dataGrid1.TableStyle.Clear();
dataGrid1.TableStyle.Add(ts);