kapil.goyal 0 Light Poster

i have a project in .net2005 in which ihttphandler is implemented but when i try to convert it into 2003 the class in which ihttphandler is implemented is not called.in 2005 the class is inside the App_code folder.can any body help me out?


the problem is in registering the handler.the following is the configuration in 2005.

<httpHandlers>
<remove verb="POST,GET" path="Upload.axd"/>
<add verb="POST,GET" path="Upload.axd" type="Upload"/>
</httpHandlers>


but when i try to put the same configuration in 2003 then it will generate an error saying there is no such mapping like that.

help me!!!!!!