asp.net - extra querystring data on jQuery.ajax() -


for intense purposes have working, however, wanted know querystring data , 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) {   // ... stuff data...   }); 

using tamperdata , viewing request.querystring in debugger resulting url is:

http://localhost/folder/myfile.aspx/processrequest?_=1298057136790&{%22status%22:%22pqs%22} 

so _1298057135790 come , why there?

browser , proxy server cache requests. appending this, fresh data. have used following in code.

cache:false 

changing remove great chance may old data, if browser cache disabled.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -