I have a Website on IIS 7.5 configured as shown below.
ParentWebSite
---ChildWebApp
- ParentWebSite is an Asp.Net 4.0 Website project.
- ChildWebApp is an Asp.Net 4.0 Web Application.
When I access the following url it works fine.
http://ParentWebSite/
When I access the childWebApplication using the following Url.
http://ParentWebSite/ChildWebApp
It gives a compilation error showing one namespace (ParentWebSite.BLL) not found. But that namespace is used only in ParentWebSite and not at all referred in the ChildWebApp.
My question why is my ChildWebApp dependent on the ParentWebSite dll?
Is not the ChildWebApp when deployed as above independent of the ParentWebSite when both are using there own App Pool?