I find that for one particular web application, requests for WebResource.axd return a completely blank page. (Copying and pasting the link into a new browser window results in an empty response document)
IIS logs showing that requests to WebResource.axd are successful (HTTP status code 200)
The application itself is complex, and therefore it seems likely that this is what the application does that calls it, however I do not know what.
What additional debugging steps can be taken to understand why these requests fail, and where should I look for places where the behavior of the application can affect WebResource.axd in this way?
Things I've tried so far:
- Creating a new virtual directory in IIS pointing to the same directory gives the same results (empty WebResource.axd document)
- Creating a completely new blank blank page and placing it in this directory gives the same results.
- If I create a new virtual directory in IIS pointing to a different folder, then the blank page works as expected.
- Sharing web.config files between working / broken directories has no effect.
This is on a computer running Windows XP with IIS 5.1
Justin
source share