How do I prevent multiple connections when drawing dynamic images?

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

Ken Varn

I have an ASP.NET page that draws over 32 dynamic images using an HttpModule
object through the <IMG> tag. Since IIS under Win2K Pro has a limit of 10
connections, some of the images do not get drawn because it appears that the
connection limit is exceeded (I get a red X for the image). If I right
click on the image and select "Show Picture", the image then shows up.

Can someone tell me how I can prevent this from happening? I somehow need
the images to draw sequentially or something like that to prevent the
connections from maxing out. Any suggestions?

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

EmailID = varnk
Domain = Diebold.com
-----------------------------------
 
I have on my win2k workstation an ASP.NET project that handles many images >
50 or 100 and they all paint fine. I use a separate aspx to handle the
painting of images from my webforms. Don't think I did anything special in
IIS. There is a limit though as I have had my system hang doing VERY large
tables of images 365 columns x 100 rows
 
Does your IIS have connection limit of 10?

I can't figure out any other reason why I am having this problem.


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

EmailID = varnk
Domain = Diebold.com
-----------------------------------
softcoder said:
I have on my win2k workstation an ASP.NET project that handles many images

50 or 100 and they all paint fine. I use a separate aspx to handle the
painting of images from my webforms. Don't think I did anything special in
IIS. There is a limit though as I have had my system hang doing VERY large
tables of images 365 columns x 100 rows
 
Back
Top