Using Visual Studio 2008, I can create a website two different ways. The first way is to create solution file and then add a ASP.NET web application project to it. The second way is to create an ASP.NET web application using the File -> New -> New Website.
The first way creates a project that has to be compiled before it can be viewed. The second way creates the project as a compile-on-access type of project.
This may be the same with 2005, but I have not tested it since I always used the second way. I started using the first way because of needing to create separate internal and external sites for the same solution.
My question is, why the two different ways of building a project. Is one better than the other?
Thanks,
Vincent