I am currently running a WAP with 2 sub web WAPs and a sub WebSite. I want to load the child web SITE project's App_Code dll, but cannot figure out how, since if I do:
oAssembly = Reflection.Assembly.Load(
"App_Code")
It doesn't find the library (since the child sites are not applications) and its not part of the parent project. Is there any way to specify the way to load the child web site's app_code dll to access some classes I have in it?
Greg Fricke