1 2 3 4 5 6 7
protected void gvCars_RowDataBound(object sender, GridViewRowEventArgs e) { foreach (TableCell tc in e.Row.Cells) { tc.Attributes["style"] = "border-color:Gray;"; } }