How do I save items from an aspx page using $.AJAX() ?
Should I use a WebService Method and pass the data to the webMethod and process save.?
like
$.ajax({
type:"POST",
url:"Save.aspx/MySaveMethod",
data:{????}
});
What does data: contain.
Is there a better way. I am using ASP.NET 2.0 and JQuery.