Everything I read about "expires" headers (http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/, eg) indicates that when taking advantage of caching in this manner, you need to "fingerprint" your file names so that when your static assets change, the browser will stop using the version from cache and instead fetch the new one.
However, in my tests with IIS7 as the backend webserver, and using IE 7, FF, and Chrome browsers, I did not need to do so. If I changed the file on the webserver -- something like "myfile.js", then the webserver sent the "last modified" header as that file's date of modification, and the browsers all picked up on that change. They returned a 200 for the first request after changing the file and subsequent requests appeared to pull from cache.
So surely I'm missing something, but I don't know what it is. Please enlighten me.