Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an HTTP module that replaces relative URLs with the URL of our CDN for static content. However, when this module is added to the web.config, it causes our Outputcache to no longer work.

I've tried messing with the order of httpModules in web.config with no luck. Any ideas?

share|improve this question
I am using varybycustom. And this is for webforms, btw – NickAtuShip Jul 27 '12 at 17:27

1 Answer

Perhaps you call Response.End() in your HttpModule. Rick Strahl writes:

...Specifying the Response.End() code at the end of the request causes UpdateRequestCache() to never fire and put the content into the cache. More info there: Don’t use Response.End() with OutputCache

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.