Deploying ASP.NET Apps
Howdy.
Ive written a fairly simple Intranet site with ASP.NET and as part of the project I produced a DLL with a number of classes included in it.
On my development machine all runs well. The classes in the DLL can be accessed and no errors occur.
However, when I took it and installed it at the client site the application kept generating errors saying that it couldnt find the classes declared inside the DLL.
ie: Compiler Error Message: BC30002: Type 'LogFile' is not defined.
I "installed" the App on the clients server simply by copying all the Application files to an Application Directory, and then using MMC to nominate the Application Directory as a Virtual Directory.
I have placed the DLL in a Sub Directory of my Application/Virtual Directory. The sub directory containing the DLL is called BIN.
My understanding is that ASP looks to that directory by default for any DLLs and there is no requirment for these DLLs to be registered with Windows.
Any tips on how to get my App to find the DLL??
Server: Win2000.
.NET Framework 1.1
Thanks in advance.
Gordon
|