Reputation: 10604
I'm used to websites in Visual Studio, but I want to know the differences between a website and web project. Are they interchangeable?
The biggest difference I could find is that, a project is pre-compiled however I saw it mentioned that a normal website can also be pre-compiled as an option.
Upvotes: 3
Views: 745
Reputation: 755397
For me the biggest difference is the relationship between the pages. In a website project, each page is essentially its only little project which is, or can be, compiled separately from the rest of the pages in the application.
In a web application, the entire project is essentially compiled into a single DLL, very much akin to a class library project.
Some other differences:
Upvotes: 2