Hi,
I am using a WebControls.Table called MYTABLE on my asp.net page. I follow the methods to fill a WebControls.Table as outlined in msdn
http://msdn.microsoft.com/library/de...topic.asp.
I also include a checkbox in each row. Everything looks fine here and MyTable does fill up with cells and rows.
When the user checks the box I want to be able to read that the row has been selected. Once the user clicks ok I check MYTABLE.rows.count and it equals 0 now. All previous data is gone and the code to fill MyTable has not been executed.
Enable viewstate is true and I only fill the table if Not Page.IsPostBack.
Thanks for your help in advance.