The problem: I have a data entry form. I would like to save the data without page roundtrip or UpdatePanels.
The solution: - the 'Save' button calls a javascript function which serialize all the fields content (client side) - the javascript function calls a web method (server side) - the web method deserialize the data and save it to the database.
Am I doing right?