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?