user2520246
user2520246

Reputation: 27

asp.net app in virtual directory to look for bin folder in parent website in iis7

Say we have an asp.net web app deployed in iis7 like the following. ParentWebSite VirtulDirectory

The web.config in 'ParentWebSite' is automatically inherited in "VirtulDirectory". How can we force the "bin" folder to be also be inherited.The "VirtulDirectory" would also have its own "bin" folder.and dlls present in "ParentWebSite" should be visible also.

Upvotes: 1

Views: 1348

Answers (1)

Alex S
Alex S

Reputation: 1221

Few solutions:

1) Create symbolic link

2) Install DLLs into GAC

Hope these help!

Upvotes: 2

Related Questions