I have a small asp.net application writed in Visual Studio 2005.
Project working in VS, but not working in IIS on remote server.
compilation error CS0246: cannot find typename or namespace
I just copy the files from project to project IIS.
Googled, I found a link http://www.codingforums.com/archive/index.php/t-122281.html
The problem is that VS2005’s ASP.NET web site projects are bogus….
Any ideas?
how I can include library in asp.net project on the server without visual studio?
Correct answer in the comments @dbaseman
You should be able to just place the .DLL file under the bin folder in your application. Make sure you’ve run “convert to application” on the folder in IIS, also.
The above should work perfectly well; you can also install the DLL in the Global Assembly Cache, using gacutil.exe. That will make the library available to all applications on the server.