In my asp.net solution, I am using jquery to manipulate some html code. I then want to convert this into an xml code, and send it back to the same page via ajax. So that the c# code can read it and do server side things to it.
Whats the best way to do this? Currently, I am putting the xml code into a invisible text box, then make the asp.net ajax call, which then in c# I can read the text in the textbox.
Is there a better way?
Thanks