G
Grant Harmeyer
How would I set up an httpHandler so that it would only apply to certain
child directories of the application?
I.E:
<httpHandlers>
<add verb="*" path="/files/*/*/*/*.aspx"
type="App.HttpHandlers.ThreeDeepPage, App" />
<add verb="*" path="/files/*/*/*.aspx"
type="App.HttpHandlers.TwoDeepPage, App" />
</httpHandlers>
The wildcard character for a directory causes an error, and before I even
tried it I thought it would. I am guessing I would probably have to do this
using a custom configSection, but I'm not sure how to do it.
TIA,
Grant
child directories of the application?
I.E:
<httpHandlers>
<add verb="*" path="/files/*/*/*/*.aspx"
type="App.HttpHandlers.ThreeDeepPage, App" />
<add verb="*" path="/files/*/*/*.aspx"
type="App.HttpHandlers.TwoDeepPage, App" />
</httpHandlers>
The wildcard character for a directory causes an error, and before I even
tried it I thought it would. I am guessing I would probably have to do this
using a custom configSection, but I'm not sure how to do it.
TIA,
Grant