How can I de-serialize a json object sent from javascript (using jquery.ajax) to a .aspx page (not a web service)?
e.g. if I have the following json object;
var json = {"name" : "michael", "surname" : "brown", "age" : "35"}
and I use
$.post('process.aspx', json)
how do I get to deserialize the json in process.aspx code behind?
also, how do I use the $.postJSON() in my case?