Hi vivek,
You can try to do it like below:
Table table = new Table();
table.ID = "Table1";
table.BorderWidth = 1;
TableRow tr = new TableRow();
tr.BorderWidth = 1;
TableCell tc = new TableCell();
tc.Text = "Celll1";
tc.BorderWidth = 1;
tr.Cells.Add(tc);
tc = new TableCell();
tc.Text = "Celll2";
tr.Cells.Add(tc);
table.Rows.Add(tr);
WizardStep1.Controls.Add(table);
Hope it helps.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Yours sincerely,
Amanda Wang
Microsoft Online Community Support