Posted on: 1/26/2015 9:56:14 AM | Views : 494

Hi,
I have a page with a table. The table's data is fetched from a database during page load. Then, each row is created, and a checkbox is added as the rightmost column. The user then may edit the form, i. e. check or uncheck different rows. Finally, he clicks on "submit".
After the user clicked on "submit", i would like to traverse the table and process each row, depending on the checkbox value.
However, I found that after the user clicks on "submit", the page is loaded again, involving the page load method again. So when the button's click handler is called, the table was recreated and the user data is lost.
What can I do to achieve the following:
fetch and present data in a web form let the user edit the web form and finally press a "submit" button evaluate the data entered by the user Note that I have put the table in an UpdatePanel. The Submit butt ...

Go to the complete details ...