Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have editable template in gridview (asp.net) in those editable template i placed textboxes where client can make the updation

Now what i want is read the data with updated changes from gridview to a datatable without using any kind of for loop



Please help me with solution
Posted

1 solution

When client makes an update on any of the textbox, using jQuery-AJAX you may update DB.
So that will persist user's changes, without causing a postback OR refreshing/Re-binding the GridView.

Now, when you want all the updated-changes, run that SP/Query on the database, which you had used in the beginning to bind the GridView. You have all the latest changes without running any for-loop.

Hope that helps.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900