When you add them in the parent you can add the validate=false option, then
when you use remove in the child web.config you won't have problems.
<httpHandlers>
<add verb="*" path="default.aspx" type="Link.MainHandler, link" validate="false"
/>
-Brock
DevelopMentor
http://staff.develop.com/ballen
> I have a website, in web.config, I have set several httphandler dll
> like
>
> <httpHandlers>
> <add verb="*" path="default.aspx" type="Link.MainHandler, link" />
> ....
> I then create a virutal directory under the site, the vritual
> directory has its own dll, but when I run files in the virtual
> directory, it always ask for the dll link in the top level. I even
> added
>
> <httpHandlers>
> <clear/>
> ...
> in the web.config in the virtual directory, but in vain. any idea?
>
> Thanks!
>