I've a .aspx Site with a ASP Table. In the code behind file I fill the table with rows, cells and in the cells are ASP TextBoxes.
At the first load I Fill the TextBoxes with Values out of a database. But after someone is editing the value and submit the Page with a created button, there are no Access to the programmaticaly created rows of the table.
now I have seen some postings that a dynamic created asp table is getting resetted by postback.
now I have a question, how can I get the values which are changed by users on the site?!
I tried to override the SaveViewState and LoadViewState, but SaveViewState is only called after the Page was loaded but not if someone is clicking a button?
I'd like to save the data of the Textboxes that i can use them in the code after the user clicked a button.
What can I do?