Child web.config in the virtual directory under the parent application
<code>
<httpHandlers>
<add verb="GET" path="anotherone.aspx" type="prj2.class, prj2"/>
</httpHandlers>
</code>
The problem is that the child application tries to access the handlers in the parent web.config. How can solve this issue without copying the parent dll into the child bin directory?
nonline
Member
75 Points
18 Posts
prevent httphandler conflict between parent and child applications.
Jun 21, 2005 09:00 PM|LINK
Parent web.config:
<code>
<httpHandlers>
<add verb="GET" path="page1.aspx" type="projectname.trackpage, projectname"/>
</httpHandlers>
</code>
Child web.config in the virtual directory under the parent application
<code>
<httpHandlers>
<add verb="GET" path="anotherone.aspx" type="prj2.class, prj2"/>
</httpHandlers>
</code>
The problem is that the child application tries to access the handlers in the parent web.config. How can solve this issue without copying the parent dll into the child bin directory?
puco_sk
Member
345 Points
69 Posts
Re: prevent httphandler conflict between parent and child applications.
Jun 22, 2005 08:59 AM|LINK
NetPublisher CMS
nonline
Member
75 Points
18 Posts
Re: prevent httphandler conflict between parent and child applications.
Jun 22, 2005 01:59 PM|LINK