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
Post a Comment