Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!
Reply to "adding a HTTPHandler ASP.NET 2.0" on asp.net:
Original Thread:
adding a HTTPHandler ASP.NET 2.0
Alexandre
1/31/2006 5:15:36 PM
Hi,
I have created an HTTPHandler in ASP.NET 2.0
I now the way to add it in the web.config but my question will be stupid...
when I compile my application in asp.net 2.0 from vs 2k5... umm what is the name of the assembly that is produced? I cannot seem to find it anywhere on my server, I ve tryed to publish, compile and still I cannot see the dll that is being produced.
so my question is this, since my HTTPHandler is in my asp.net project and that I cannot find the produce assembly,
what assembly name do I reference ?
Best regards, Alexandre Brisebois
Re: adding a HTTPHandler ASP.NET 2.0
David Barkol
1/31/2006 5:44:01 PM
Alexandre,
The compilation model has changed in ASP.NET 2.0. By default, you do not create assemblies for your projects. Here is a link that will explain the changes:
I found some informatino registered my handler on a specific extention bu when ever I try to use the handler its as it it never goes to it and I get a 404 error.
here is how I register my handler: <httpHandlers> <add verb="*" path="*.doc" type="CervoHandler"/> </httpHandlers>