G
Guest
In the root of my ASP.NET app I've a web.config which includes these lines:
<code
[1
<httpHandlers><add verb="*" path="GetImage.ashx" type="StatsAndMaps.Map.GetImage, StatsAndMaps" /></httpHandlers></code
In a sub-folder where I don't care about this I've another web.config which includes these lines:
<code
[2
<httpHandlers><clear /></httpHandlers></code
But, when I run the app and access a page in the sub-folder [2], I'm getting a "File or assembly name StatsAndMaps, or one of its dependencies, was not found" error with the contents of [1] highlighted. I expected [1] to be ignored, so what's happening?
Any ideas, anyone?
<code
[1
<httpHandlers><add verb="*" path="GetImage.ashx" type="StatsAndMaps.Map.GetImage, StatsAndMaps" /></httpHandlers></code
In a sub-folder where I don't care about this I've another web.config which includes these lines:
<code
[2
<httpHandlers><clear /></httpHandlers></code
But, when I run the app and access a page in the sub-folder [2], I'm getting a "File or assembly name StatsAndMaps, or one of its dependencies, was not found" error with the contents of [1] highlighted. I expected [1] to be ignored, so what's happening?
Any ideas, anyone?