I wrote dynamic image changing as HttpHandler. It automatically calls something with an image extension, for example, for example:
http://www.mysite.com/picture.jpg?width=200&height=100
it starts the handler and returns a sketch with the corresponding response headers. However, I want the handler to skip the pass request if it called without a request:
http://www.mysite.com/picture.jpg
I want this to return an image with header information, as if it were not being run through a handler. Is it possible, without having to manually encode the header information (which includes opening threads to read data, such as the date of the last record), or do I need to convert the handler to instead HTTPModule?
source
share