Hi
I have below code in Gridview RowDataBound. I want to set font-size
TableCell cell = new TableCell();
TextBox txtColumn = new TextBox();
txtColumn.ID = "txtSessionDate";
txtColumn.CssClass = "form-control daterange-single";
cell.Controls.Add(txtColumn);
e.Row.Cells.Add(cell);
Thanks