Tagged Questions
2
votes
1answer
57 views
Using GlobalFilters to cache invalidation is a good idea?
I am using ASP.NET MVC and EF.
To do cache invalidation I override the SaveChanges method and every time that SaveChanges is called, I update a field in database to flag that something changed.(I am ...
2
votes
1answer
323 views
Help create a unit test for test response header, specifically Cache-Control, in determining if caching has been disable or not
Scenario:
I have a base controller which disables caching within the OnActionExecuting override.
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
...
1
vote
2answers
61 views
Is it possible to set content expiration on the server (IIS) to force a new script file version to be downloaded?
Having released a new web application, updates are going out fairly frequently. Browsers cache external script and CSS files, and when updated, UI behaviour is not as it should be if the user's ...
1
vote
2answers
59 views
is there anyway to detect when a certain controller action get evicted when using outputcache attribute
i have this code:
[AcceptVerbs(HttpVerbs.Get)]
[OutputCache(Duration = 86400, VaryByParam = "*")]
public ActionResult GetData(MyParams myParams)
{
return GetDataEx(myParams);
...
1
vote
1answer
292 views
ASP.NET Cache-Control changes on server
I have ASP.NET MVC action filter that sets the cache-control header of the response. It all works fine except when I publish it to the web server.
When I'm running it through localhost I get the ...
1
vote
0answers
305 views
How to remove s-maxage header from asp.net mvc response
By default, Asp.Net MVC (at least my setup) seems to send a header with the value
Cache-Control: private, s-maxage=0
I need to remove the s-maxage=0 part. The reason is that IE6 seems to handle the ...
0
votes
1answer
97 views
How to specify cache-control header with LitS3 Library? (Amazon File Upload)
I'm using the LitS3 library to help upload photos from my ASP.NET MVC application to Amazon S3.
I've read through all the documentation, googled around, and i can't figure out how to set the ...
0
votes
2answers
155 views
Does the ASP.NET OutputCache directive actually cache or just set some Response properties?
When someone uses the OutputCache directive in an ASP.NET WebForms/MVC application, does it actually do any caching server-side, like using the Cache or does it only setup some properties in the ...
0
votes
2answers
890 views
ASP.NET MVC Change Response Header when Serving Javascript/CSS Files
Is there a way to automatically change the response header in ASP.NET MVC when the browser requests a Javascript or CSS file?
Basically, I want my Javascript and CSS files to be served with this set ...