I have an IHttpHandler
serving dynamically generated files. I wish to respond to HEAD
requests to let the client know whether the file has changed.
I need to send the last change date and the file size, do I have to use Response.AddHeader()
or is there a cleaner way?