Link to home
Start Free TrialLog in
Avatar of GlobaLevel
GlobaLevelFlag for United States of America

asked on

vb.net what folder in the object explorer does a .dll go into??

vb.net what folder in the object explorer does a .dll go into??

i think bin ...debug??
Avatar of Brad Howe
Brad Howe
Flag of Canada image

Hi,
I assume this is a 2.0/3.* framework.
The dll(s) that the runtime creates will now be in the Temporary ASP.NET Files directory underneath the framework installation
directory, unless you precompile the application/site with the publish option or the aspnet_compiler command line tool.

http://www.dotnetspider.com/tutorials/AspNet-Tutorial-AspNet-Tutorial-111.aspx 
Cheers,
Hades666
Avatar of GlobaLevel

ASKER

Will this change for vbdotnet?? I was told that the all hoes in the same folder as the app
ASKER CERTIFIED SOLUTION
Avatar of Zhaolai
Zhaolai
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Zhaolai,

What does the Module.vb do? what function does that serve?
Module1.vb contains a function to locate the assemblies your app references, if they are not in the same folder as the app. The event will fire when the reference is initialized and return appropriate assembly.

There is no need to modify the rest of your code in calling the references.