I am trying to cache the jQuery Ajax response. The response headers are as below
But the data is not getting cache each time it is requesting back to server.
I have gone though the link
1. Caching a jquery ajax response in javascript/browser
and few other my jquery call is like below
$.ajax({
url: "xxx",
type: "POST",
data: { 'xxx':'XXX'},
asyn: false,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data)...
but still no luck.