Hi,
I want to add Top margin to my Cells in GridView inside the RowDataBound event, please help.
protected void grdperformance_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
// Display the company name in italics.
//e.Row.Cells[1].Text = "<i>" + e.Row.Cells[1].Text + "</i>";
e.Row.Cells[3].ForeColor = Color.Red;
e.Row.Cells[12].CssClass = "label label-info pull-left";
}
}