A 302 Redirect is being returned after a post of information. This redirect is intended to reload the current page.
This all works fine, but IE adds No-Cache to the header:
Cache-Control: no-cache
We are using Squid to cache our content, and putting this in the header bypasses squid.
As this redirect is used quite often(there is no way around this), this increases load on our system substantially.
Firefox doesn't have this problem, it simply requests the redirected page without changing the header which is exactly what we want.
Is there anything we can do to stop IE from adding no-cache?