Ramon Smits

Tell me your secrets and i'll tell you mine

Browse by Tags

All Tags » etag (RSS)
MVC *always* returns status code 200 when a max age is set while it can return with 304
Take a look at the following mvc csharp code: Response.AddFileDependency(filename) Response.Cache.SetETagFromFileDependencies(); Response.Cache.SetCacheability(HttpCacheability.Public); Response.Cache.SetMaxAge(TimeSpan.FromHours(1)); return File(filename...