Difference between website and web application projects in visual studio 2005+
August 2, 2010 Leave a Comment
Website:
- It is just a group of all folders and files under one folder.
- It has not project file.
- Developer has to open existing website by selecting a folder, not just by double clicking.
- It has no bin folder.
- It build dynamically at runtime.
- It can not create single assembly of a website.
- Useful when to write a code and to share the same.
Web Application:
- It contains a project file where in all files and folders are under it.
- It is an old visual studio 2003 style.
- All code files are compiled under one directory.
- It has several options for publishing.
Advertisement