For all intense purposes what I have is working, however, I wanted to know what this extra querystring data is and where it's coming from.
jQuery.ajax({
url: 'MyFile.aspx/ProcessRequest',
data: JSON.stringify({status: status }),
async: false,
dataType: 'application/json',
cache: false,
success: function (data) {
// ... do stuff with data...
});
Using tamperdata and also viewing the Request.QueryString in the debugger the resulting url is:
http://localhost/Folder/MyFile.aspx/ProcessRequest?_=1298057136790&{%22status%22:%22pqs%22}
So where does this _1298057135790 come from and why is it there?