I would like to have my code for an HttpModule somewhere else than in the App_code folder, is that possible?
EDIT: For now, i have my module in a class file in the App_code folder of my web application. I'm successfuly registering it with this line in my web.config
<httpModules>
<add name="myModule" type="myModule,App_code"/>
</httpModules>
What i would like to do is being able to put my class file somewhere else than in the Ape_code folder. Something like :
<httpModules>
<add name="myModule" type="myModule, myOtherFolder"/>
</httpModules>