I have a minor problem...
My host has done the mapping and I have created an httphandler (handler.ashx) residing in app_code
I have in my web config...
<httpHandlers>
<add verb="*" path="*.doc" type="App_Code.DocHandler"/>
</httpHandlers>
but am getting an error...
Parser Error Message: Could not load type 'App_Code.DocHandler'.
any ideas?
Dave