M
Marius Hildebrandt
I have made a web handler that resizes an image on the server before sending
it to the browser. This works fine on my local computer. However, when i
publish to a hosted site, it doesn't work. No exceptions are thrown, it just
doesn't send any image info to my browser. I do not have permission to
create og write to a file, so I'm finding it har to debug.
I pass the relative image path and the new image width value to the handler.
I suspect that it might be the cause of my problems, but I really cannot
find out without any ways to get debug info. The ISP also does not allow the
Debug="true" switch.
The .dll i placed in the [root]/bin folder, and this is what's in my
web.config:
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.ashx" type="ImageGrabber,ImageGrabber" />
</httpHandlers>
(...)
The site is in Norwegian, but as you can see, some images are missing:
http://www.beckmaskin.no/nybeck/
Any suggestions will be appreciated.
it to the browser. This works fine on my local computer. However, when i
publish to a hosted site, it doesn't work. No exceptions are thrown, it just
doesn't send any image info to my browser. I do not have permission to
create og write to a file, so I'm finding it har to debug.
I pass the relative image path and the new image width value to the handler.
I suspect that it might be the cause of my problems, but I really cannot
find out without any ways to get debug info. The ISP also does not allow the
Debug="true" switch.
The .dll i placed in the [root]/bin folder, and this is what's in my
web.config:
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.ashx" type="ImageGrabber,ImageGrabber" />
</httpHandlers>
(...)
The site is in Norwegian, but as you can see, some images are missing:
http://www.beckmaskin.no/nybeck/
Any suggestions will be appreciated.