On Wed, Oct 06, 2004 at 03:40:13PM -0600, Dustin Lee wrote: > When I'm using IE to browse my quixote web application, sometimes I > have to hit reload a few times before data just entered will appear on > a previously loaded page (e.g. I add an item to a list and then > redirect to a view of that list to see that it was entered correctly). > I (and my) users have only had this problem when using IE (but > possibly I don't have a large enough sample size). Quixote sets the Expires header to -1 by default. It's cache unfriendly but is what most people expect when developing dynamic applications. See: http://support.microsoft.com/default.aspx?scid=kb;en-us;234067 for details from the horse's mouth. Neil