Problems with image render timout when browsing on local machine.

  • Thread starter Thread starter Ken Varn
  • Start date Start date
K

Ken Varn

I have an ASP.NET page that renders around 32 dynamic images using an
HttpModule class. For some reason when I run the browser on the localhost,
some of the images do not show up. I get the red X and then have to
right-click and select the Show Image option. This does not seem to happen
when I browse from a remote client. I even tried installing onto another
web server and still see the same problem when I browse locally. Does
anyone have any info on why this happens?

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.

EmailID = varnk
Domain = Diebold.com
-----------------------------------
 
The development edition of IIS limits simultaneous amount of requests.
So you get 500 error (server is busy) for some images.

Nothing to worry about.

George.
 
How can I prevent this from happening. Is there some way to prevent
simultaneous image downloading and instead have each images download
synchronously?

In my opinion, this is something I need to worry about. My customer needs
to be able to browse locally and thus I must prevent this from happening.

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.

EmailID = varnk
Domain = Diebold.com
-----------------------------------
George Ter-Saakov said:
The development edition of IIS limits simultaneous amount of requests.
So you get 500 error (server is busy) for some images.

Nothing to worry about.

George.
 
Back
Top