
The Web Site project was introduced with Visual Studio 2005, but it has turned out not to be extremely popular. That can lead to having several close copies of DLL files containing the same class name, which will generate plenty of errors. If Visual Studio isn’t told to re-use the same names constantly, it will come up with new names for the DLL files generated by pages all the time.
#What is microsoft visual studio 2005 tools for applications code#
It also gives problems when you have pages or controls in one directory that need to reference pages and controls in another directory since the other directory may not be compiled into the code yet.

You end up with a lot more DLL files, which can be a pain. The Web Site project is compiled on the fly. However, for the sake of convenience, we’ll briefly summarize the gist in this post.


When you start a new ASP.NET project in Visual Studio, you have the chance to create a new ASP.NET Web Site project or a ASP.NET Web Application project.
