Hi,
Iam creating dynamically textbox in asp.net. now i want 3 columns that means 3 textboxs horizontally by clicking add button, my code will display only one textbox
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tc.Controls.Add (tb);
tr.Cells.Add(tc );
ctrlTable.Rows. Add(tr);
Iam creating dynamically textbox in asp.net. now i want 3 columns that means 3 textboxs horizontally by clicking add button, my code will display only one textbox
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tc.Controls.Add (tb);
tr.Cells.Add(tc );
ctrlTable.Rows. Add(tr);
Comment