Ramco Ramco

Ramco Ramco

  • 461
  • 2.9k
  • 410.6k

Set Attributes of TextBox

May 21 2023 11:23 AM

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


Answers (3)