What are people using to bust IE's broken caching? When IE makes an AJAX GET request, it returns from its own cache faking a 304 server return status. This is problematic if you have multiple writers or are trying to refresh server state after a PUT. What's the best way to work around this problem?
I guess what I want to do is add a random query parameter on all AJAX GETs from IE so that it always passes it on to the server. Suggestions for least disruptive ways to do this?