He has guys :)
I have encountered this problem since last October 2008, but finally I understood why this is? Instead of adding modules, as I added above in my question, use the following module syntax created for IIS7 (godaddy uses IIS7 for Windows hosting)
<configuration> <system.webServer> <modules> <add name="Header" type="Contoso.ShoppingCart.Header"/> </modules> </system.webServer> </configuration>
Put all your modules here and you're done! It is nice and works great!
And "@Jon Skeet" there is no need to have a namespace for modules, even without a namespace you can make it work!
Learn more about this tag http://www.iis.net/ConfigReference/system.webServer/modules
Prashant
source share