I have this code:
context.HttpContext.Response.Cache.SetCacheability(HttpCacheability.Public);
context.HttpContext.Response.Cache.SetMaxAge(TimeSpan.FromHours(24));
And the response is this:
Status Code: 200
Date: Fri, 14 Dec 2012 13:56:41 GMT
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Length: 38436
X-AspNetMvc-Version: 4.0
Server: Microsoft-IIS/8.0
Content-Type: application/rss+xml; charset=utf-8
Cache-Control: public
X-SourceFiles: =?UTF-8?B?QzpcUHJvamVjdHNcVGVzdFxtYW5nb21pbnQucHVibGljXHNyY1xNYW5nb21pbnQuUHVibGljLldlYlxibG9nXHJzcw==?=
Why is there no max-age defined on Cache-Control?
I had the same problem and it was driving me nuts. The solution is to add this line first:
context.HttpContext.Response.Cache.SetSlidingExpiration(true);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With