vote up 1 vote down star

How do I create a Web Application Project in VS 2008? How is it different from a "WebSite" project?

flag

52% accept rate

6 Answers

vote up 2 vote down

There is a similar question here thats already answered: http://stackoverflow.com/questions/43019/what-does-vs-2008s-convert-to-website-mean

Hope it helps

link|flag
vote up 1 vote down

File--New--Project

instead of File--New--Web Site

It acts as a different container all together and the compile model is different.

ScottGu provided some details when they were first launched: http://weblogs.asp.net/scottgu/archive/2006/05/08/445742.aspx

link|flag
vote up 0 vote down

MSDN page describing the difference

Also google shows many pages on this

link|flag
vote up 0 vote down

The main difference is that Web application uses .csproj file which holds the information about all the files in the project. What difference does it make? Using web site model you can add new files without visual studio, since adding new files doesn't require csproj file modifications, but using Web application model you can not. I personally prefer Web application type.

link|flag
vote up 0 vote down

People have adequately identified many differences, but let me add this broader stroke:

Web Application Projects are architecturally consistant with the other project types in .Net, whereas WebSites deviate and really seem like a throwback to the VS 2003 days.

For this reason, my opinion is that WAP's are more elegant (especially when you have more than one project in a solution).

link|flag
VS2003 had a web application, whereas they broked it in VS2005 before bringing it back in SP1. It's really a throwback to the "classic" days... shudder – GalacticCowboy Dec 1 '08 at 20:14
You're right actually... It does feel more like Classic. sympathy shudder – Brian MacKay Dec 1 '08 at 23:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.