A
Alberto
Hi,
I have an aspx page (showJpeg.aspx) that contains a few HTM image
controls. The src property of the controls is set at runtime like
this, for example
<img src="http://server/getJpeg.aspx?w=100&h=100"> where getJpeg
simply returns a byte[] to the page and I set the Response.ContentType
= "image/jpeg";
If I call the getJpeg.aspx page by itself the output is fast and
reliable.
However when showJpeg.aspx is called (the page that contains the
controls whose source property is populated by getJpeg.aspx) the
results are rather disappointing.
The page, even with ONE image control, loads really slow. Sometimes
the images do not even appear in the control and there is a rather
substantial delay between the loading of the page and the displaying
of the images. The images are very small in size most of them <5k.
What is going on? Anyone?
I have an aspx page (showJpeg.aspx) that contains a few HTM image
controls. The src property of the controls is set at runtime like
this, for example
<img src="http://server/getJpeg.aspx?w=100&h=100"> where getJpeg
simply returns a byte[] to the page and I set the Response.ContentType
= "image/jpeg";
If I call the getJpeg.aspx page by itself the output is fast and
reliable.
However when showJpeg.aspx is called (the page that contains the
controls whose source property is populated by getJpeg.aspx) the
results are rather disappointing.
The page, even with ONE image control, loads really slow. Sometimes
the images do not even appear in the control and there is a rather
substantial delay between the loading of the page and the displaying
of the images. The images are very small in size most of them <5k.
What is going on? Anyone?