Hi,
Try this out in the itemdatabound event of the grid
if(e.Item.ItemType == ListItemType.Item)
{
e.Item.Cells[1].ForeColor=Color.Red;
}
[quoted text, click to view] "kobeting" wrote:
> Dear All,
>
> I would like to like that how I can set the font color of a specific
> column of a datagird.
>
> For example, my datagrid contains 4 columns and may rows, but I only want
> all column 2 data font color will be in Red and other data font color is
> still in blank.
>