First of all, when to use what and the overall differences between them has already been answered before. But I couldn’t find an answer to this question:
Where can I check if my Visual Studio project is a Web Application or a Web Site?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Personally, one tell tale sign for me is whether the project folder actually contains a project file, or not.
You can see the icons differ slightly in VS – a web application has a layered
world->docs->languageicon and a web site just consists ofworld->docs.Also, once opened within VS, right-clicking will display
PropertiesandProperty Pagesfor web applications and web sites respectively; further, on clicking this option you will be greeted with a dialog for the former and MDI tabbed form for the latter – the latter also exposes more functionality to control pre and post build steps and so forth.A a web application will also display
PropertiesandReferencesspecial folders as part of the project tree in the Solution Explorer, whereas a web site does not necessarily; unless manually created for some reason (but they still won’t be special – web sites use thebinfolder for their references).