|
Rank: Advanced Member Groups: Member
Joined: 7/26/2009 Posts: 36
|
I've noticed that after my asp.net pages fully render I get this message in url status bar at the bottom of the page. Usually its 20 or so items that it downloads and if I do anything while this is happening, I get an error.
Can you tell me why this is happening with the EO_WEB.ashx?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We use eo_web.ashx to render our built-in images. Inside your .aspx, built-in images are represented by a number rather than a Url (for example, if you see LeftIconUrl="00123456", then 00123456 is a built-in image). Those image files do not physically exist on your server but rather is rendered through eo_web.ashx. You can easily replace it with your own image if that bothers you.
Thanks
|
|
Rank: Advanced Member Groups: Member
Joined: 7/26/2009 Posts: 36
|
Hi
It doesn't bother me... it just seems to be very slow downloading. Is there anyway to cache them on the clientside?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Browsers suppose to cache them. However sometimes browsers may get confused (we do not know for sure) because they are not physical files on the server side and they do not have a regular image file extension (for example, .gif). In any case using physical image files should help. You can find all image files our product uses inside a file called Images.zip in the installation folder. You can unzip it and place those files (maybe only those you use) on your server and change your .aspx to use those files directly.
Thanks!
|
|