Added textox to the table cell after page reload it disappear
Hi
ViewState.Add("flag", 1);
TableCell tc = new TableCell();
TableRow tr = new TableRow();
TextBox t = new TextBox();
t.ID = "TB" + ViewState["flag"].ToString();
t.Text = "Venky" + ViewState["flag"].ToString();
tc.Controls.Add(t);
tr.Cells.Add(tc);
Table1.Rows.Add(tr);
At the first time page load it will apppear but,After pressing any button on the page . the textbox on the table disappear.How we get the previous stage of the table even after pressing the button.