Is there a way to prevent gridview postbacks every time a row is added?
Basically, I'm looking for a method to store the DataTable on the client side and then send it to the server control when I want to save data, rather than having postbacks triggered with each row addition.
I've done some searching but all I could find were solutions involving web services and JSON, which seem unnecessarily complex for what should be a common task. Has anyone found a simpler approach?
If you have any insights on this issue, please share them!