There is nothing wrong with a web site project. You just use it for different reasons.
Here are some of them:
Need to migrate large Visual Studio .NET 2003 applications
Web Application Projects Prefer single-page code model to code-behind model
Web Site ProjectsPrefer dynamic compilation and working on pages without building entire site on each page view (that is, save file and then simply refresh the page in the browser).
Web Site ProjectsNeed to control names of output assemblies
Web Application Projects Need to generate one assembly for each page
Web Site Projects
Need stand-alone classes to reference page and user control classes
Web Application Projects Need to build a Web application using multiple Web projects
Web Application Projects Need to add pre-build and post-build steps during compilation
Web Application ProjectsWant to open and edit any directory as a Web project without creating a project file
Web Site ProjectsHere is a link to some help in converting a web site project to a web application project:
http://msdn.microsoft.com/en-us...ary/aa983476(VS.80).aspx
Edited by user
2009-06-24T03:03:04Z
|
Reason: Not specified