C
Craig Deelsnyder
Avijit said:Hi:
I have written a small ASP.NET app to display various graphs and data using C# codebehind classes etc. and works for the most part fine on a local machine (i.e., browser on the same XP Pro box where IIS is running).
The problem is I am getting response code 304 randomly for some of the pages (one of them just displays a few images) and when I access this application from another computer most of the page requests are getting 304 and as a result it's not working properly.
Here is part of the server log:
--------------------------------
20:45:55 127.0.0.1 GET /about.aspx 200
20:45:55 127.0.0.1 GET /doc-styles.css 200
20:45:55 127.0.0.1 GET /images/banner_image_omni3.jpg 304 <===========
20:45:55 127.0.0.1 GET /images/watermark.png 304 <===========
20:45:55 127.0.0.1 GET /images/top-menu-bg.png 200
--------------------------------
I am not sure what's wrong.
Here is the configuration for my system:
1. OS Win XP Pro SP 1
2. IIS 5.1
3. ASP.NET 1.1.4322.573
doesn't 304 mean 'not modified'? i think that's valid, as the browser
asks with an 'if-modified-since', but the server says no need to resend,
it's still 'current content'....sounds more like a browser problem,
asking for that check, but not utilizing it correctly...have you tried
other browsers?