views:

9

answers:

0

I'm about to begin to use the asp.net module found at http://nathanaeljones.com/products/asp-net-image-resizer/

The module works like this: localhost/files/image.jpg.axd?width=400 (the module identifies this and resizes the image image.jpg).

The problem is that I'm not just using images that is on my filesystem, I'm also using files that is on other websites (customers website) - Is this possible?

The problem that I can see is that I have to fool the module somehow to making it think that it's getting the file from the local filesystem. Is this possible?

I can guess that the component uses somthing like Server.MapPath to see if the file exists, can I route something like this?