Hi,
Iam using below code for creating dynamically textboxes, it will creating only one textbox i want 3 textboxs horizontally how to do?
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tc.Controls.Add (button);
tr.Cells.Add(tc );
ctrlTable.Rows. Add(tr);
Iam using below code for creating dynamically textboxes, it will creating only one textbox i want 3 textboxs horizontally how to do?
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tc.Controls.Add (button);
tr.Cells.Add(tc );
ctrlTable.Rows. Add(tr);
Comment