Hi All,
I have a html table created dynamically with ID="tblSeatLayout" and i need 2 get that in next page.
I have used the following code to do that but am getting null.
if(!IsPostBack)
{
if (Page.PreviousPage != null)
{
HtmlTable htmlTab = (HtmlTable) PreviousPage.FindControl("tblSeatLayout");
}
}
Thanks in advance
Vishwas