views:

89

answers:

1

If I have an ASP.NET application in IIS with virtual directories, can aspx pages in the virtual directories access DLLs within that application as well?

WEBSITE  
 -App___Data  
 -App_Themes  
 -Bin  
   -MyDLL.dll  
 -Images  
 -MyVirtualDir  
   -MyAspPageThatNeedsToAccessMyDll.aspx  

Is this possible?

+1  A: 

Yes, assuming that all the folders are running under the same application. If the "MyVirtualDir" was its own application, then I don't think it'll work.

JB King
Yes, I just realized that my DLL wasn't built so I was seeing the methods in intellisense but would error our when I tried to run it.
EdenMachine