Tagged Questions
The content-expiration tag has no wiki summary.
3
votes
2answers
1k views
Content Expiration - IIS 6
If I set the content expiration for static files to something like 14 days and I decide to update some files later on, will IIS know to serve the updated files or will the client have to wait until ...
1
vote
1answer
3k views
Google Chrome does not honor cache-policy in page header if the page is displayed in a FRAME
No matter what I do:
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Expires" content="Fri, 30 Apr 2010 11:12:01 GMT" />
<meta http-equiv="Expires" content="0" ...
1
vote
4answers
601 views
Why is my asp.net caching throwing an exception?
I have a bunch of simple lookup tables cached in my asp.net application since the source data is on a seperate server from our main web architecture and it changes infrequently. I've been following ...
0
votes
2answers
44 views
Expiration date for items in the past in wordpress - not showing current date
I'm using the following code to hide posts in the past in wordpress (the date is coming from a custom field I've made called date) - problem is its also hiding ones set to today's date as well
...
0
votes
0answers
110 views
Define HttpExpires in WebDirProperties (WIX3.5.2519.0)
I want define the content expiration for some directory on IIS7 during installation. When I define it like:
<iis:WebDirProperties Id="Folder_ContentExpiration" HttpExpires="D,0x278d00"/>
it ...
0
votes
2answers
3k views
How do I set the cachability of static files in IIS?
I have some static images in a folder on my IIS 6-based website that I want to be downloaded as little as possible (to preserve bandwidth). I've set the Content Expiration to expire after 30 days. Is ...