I compiled several cs files (containing namespaces) into a dll file which i will call from a code-behind-file for an aspx page. In the compiler response file, i specified that the dll be created in a folder named 'bin' which is one level down from the folder in which the cs files are located.
Besides the aspx file, I coded another cs file 'Test.cs' to test my dll. The cs file is located in the folder which contains the 'bin' folder not in the 'bin' folder itself. My problem is Test.cs looks for the dll in the current folder. How do i point Test.cs to look for the dll in the 'bin' folder?
Test.cs
|
|---bin( dll )
Besides the aspx file, I coded another cs file 'Test.cs' to test my dll. The cs file is located in the folder which contains the 'bin' folder not in the 'bin' folder itself. My problem is Test.cs looks for the dll in the current folder. How do i point Test.cs to look for the dll in the 'bin' folder?
Test.cs
|
|---bin( dll )