i created dynamically a table with in a function... this table is added to a panel. and this panel is in ajax updatepanel... statically i have given no of rows as 3, for that table... in page_load my table with 3 rows is created.... but i cannot identify this table in another button click event...
i wrote the code like this...
System.Web.UI.WebControls.Table table = (System.Web.UI.WebControls.Table)addrowpnl.FindControl("Table1");
here Table1 is my dynamic table id.....
could anyone please suggest me to solve this