Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have built a typical ASP.NET MVC 3 Web site with some views that link to JavaScript files. However, I turned the files into embedded resources (which use WebResource.axd), so naturally, the URLs have changed.

The problem is that now my log is filling up with 404s from the old URLs, presumably because people's browsers have cached pages that contain the old links.

What is the best way to resolve this? Also, the pages with these links have dynamic content. Why would they be cached, and why would the links to the .js files be cached but not the JavaScript contents themselves?

share|improve this question
Care to comment on why you downvoted me, anonymous person? – Andy West Jul 2 '12 at 16:54

1 Answer

Remove this line:

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

from Global.asax (or wherever you've defined your routes).

share|improve this answer
I don't understand how this will solve my problem. In fact, this would break requests to WebResource.axd and make things worse. It's the old, browser-cached links (which point to nonexistent files in the scripts folder) that I'm having problems with. – Andy West Sep 2 '11 at 4:31

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.