Hi,
I have noticed an unusual pattern on static file requests in our site
(IIS6/Win2k3). The server was sending not modified files to the client , even
if the if-modified-since header was correct. I found these links on the web
describing a bug in IIS. The Etag header was not handled correctly and the
304 Not Modified answerd was not sent. Instead, IIS sends the file (200 OK
code).
http://dotnetjunkies.com/WebLog/leon/archive/2005/02/16/54630.aspx
http://support.microsoft.com/default.aspx?scid=kb;EN-US;823544
http://support.microsoft.com/default.aspx?scid=kb;EN-US;900245
Is it safe to use a filter that removes the Etag from all requests to the
site as suggested in
http://blogs.msdn.com/yanno/archive/2006/03/03/543176.aspx ?
Thanks,