up vote 235 down vote favorite
103
share [g+] share [fb]

When I start a new ASP.NET project in Visual Studio 2008, I can either create a new ASP.NET Web Site or an ASP.NET Web Application.

What's the difference between these two project types? Why would I choose one over the other?

If I'm using Visual Studio 2005 instead of Visual Studio 2008, is the answer different?

If I'm using Visual Studio 2010, is the answer different?

link|improve this question

16  
+1 since I'd quite like to know myself :) – NM. Dec 29 '08 at 16:28
1  
I knew the answer on a simple level (compiled vs non-compiled) but I couldn't figure out when I would use one over the other. I always use web application because that's what I'm used to. – Robert S. Dec 29 '08 at 16:31
fwiw, I've never professionally had a reason to choose website over app – annakata Dec 29 '08 at 17:28
In my experience, it does not really matter. Most of your business and data access logic should be contained in separate class library projects anyways. The web tier should only be (mostly) display logic. – sestocker Dec 29 '08 at 18:30
1  
And nobody answered specifically about VS2010 ... Because, as a beginner, I do believe the answer is at least a little different. – Cawas Sep 29 '10 at 16:49
show 2 more comments
feedback

14 Answers

up vote 196 down vote accepted

Website:

The Web Site project is compiled on the fly. You end up with a lot more DLL files, which can be a pain. It also gives problems when you have pages or controls in one directory that need to reference pages and controls in another directory since the other directory may not be compiled into code yet. Another problem can be in publishing.

If Visual Studio isn't told to re-use the same names constantly, it will come up with new names for the DLL files generated by pages all the time. That can lead to having several close copies of DLL files containing the same class name, which will generate plenty of errors. The Web Site project was introduced with Visual Studio 2005, but it has turned out not to be extremely popular.

Web Application:

The Web Application Project was created as an add-in and now exists as part of SP 1 for Visual Studio 2005. The main differences are the Web Application Project was designed to work similar to the Web projects that shipped with Visual Studio 2003. It will compile the application into a single DLL file at build time. In order to update the project it must be recompiled and the DLL file published for changes to occur.

Another nice feature of the Web Application project is it's much easer to exclude files from the project view. In the Web Site project, each file that you exclude is renamed with an exclude keyword in the filename. In the Web Application Project, the project just keeps track of which files to include/exclude from the project view without renaming them, making things much tider.

Reference: http://www.megasolutions.net/AspNet/difference-between-Web-Site-and-Web-Application-Project-27210.aspx

The article ASP.NET 2.0 - Web Site vs Web Application project also gives reasons on why to use one and not the other. Here is an excerpt of it:

  • You need to migrate large Visual Studio .NET 2003 applications to VS 2005? use the Web Application project.
  • You want to open and edit any directory as a Web project without creating a project file? use Web Site project.
  • You need to add pre-build and post-build steps during compilation? use Web Application project.
  • You need to build a Web application using multiple Web projects? use Web Application project.
  • You want to generate one assembly for each page? use Web Site project.
  • You prefer dynamic compilation and working on pages without building entire site on each page view? use Web Site project.
  • You prefer single-page code model to code-behind model? use Web Site project.

Web Application Projects versus Web Site Projects (MSDN) explains the differences between web site and web application projects. Also, it discusses the configuration to be made in Visual Studio.

link|improve this answer
1  
Thanks Dreas. I hope this question/answer combo bubbles to the top of the Google search results. – Robert S. Dec 29 '08 at 16:39
You can still compile your entire site into a dll with the file based Web Site. – metanaito Dec 31 '08 at 22:48
11  
The way I tend to think of it. If you are programming an application that happens to use HTML as it UI then use Web Application. If you have a web site that happens to need a bit of Asp.net on a few of its pages use Web Site Project. – Ian Ringrose Jun 26 '09 at 11:17
9  
Actually, Web Application Projects were precisely the original ASP.NET project type. They are not "like" the projects we had in Visual Studio 2003. They were not created as an add-in. Visual Studio 2005 SP1 simply restored what Visual Studio 2005 RTM mistakenly removed. – John Saunders Jun 30 '09 at 2:09
1  
You can use WebApplication output in a WebDeployment project. You cannot use WebSite output in a WebDeployment project. If you want to create a Deployment project, stick to WebApplication. But for developing, WebSite is more convenient. However, conversion is not always problemlesss, so start with WebApplication right away. – Quandary Aug 7 '10 at 7:49
feedback

Web Site is what you deploy to an ASP.NET web server such as IIS. Just a bunch of files and folders. There’s nothing in a Web Site that ties you to Visual Studio (there’s no project file). Code-generation and compilation of web pages (such as .aspx, .ascx, .master) is done dynamically at runtime, and changes to these files are detected by the framework and automatically re-compiled. You can put code that you want to share between pages in the special App_Code folder, or you can pre-compile it and put the assembly in the Bin folder.

Web Application is a special Visual Studio project. The main difference with Web Sites is that when you build the project all the code files are compiled into a single assembly, which is placed in the bin directory. You don’t deploy code files to the web server. Instead of having a special folder for shared code files you can put them anywhere, just like you would do in class library. Because Web Applications contains files that are not meant to be deployed, such as project and code files, there’s a Publish command in Visual Studio to output a Web Site to a specified location.

App_Code vs Bin

Deploying shared code files is generally a bad idea, but that doesn’t mean you have to choose Web Application. You can have a Web Site that references a class library project that holds all the code for the Web Site. Web Applications is just a convenient way to do it.

CodeBehind

This topic is specific to .aspx and .ascx files. This topic is decreasingly relevant in new application frameworks such as ASP.NET MVC and ASP.NET Web Pages which do not use codebehind files.

By having all code files compiled into a single assembly, including codebehind files of .aspx pages and .ascx controls, in Web Applications you have to re-build for every little change, and you cannot make live changes. This can be a real pain during development, since you have to keep re-building to see the changes, while with Web Sites changes are detected by the runtime and pages/controls are automatically recompiled.

Having the runtime manage the codebehind assemblies is less work for you, since you don't need to worry about giving pages/controls unique names, or organizing them into different namespaces.

I’m not saying deploying code files is always a good idea (specially not in the case of shared code files), but codebehind files should only contain code that perform UI specific tasks, wire-up events handlers, etc. Your application should be layered so that important code always end up in the Bin folder. If that is the case then deploying codebehind files shouldn't be considered harmful.

Another limitation of Web Applications is that you can only use the language of the project. In Web Sites you can have some pages in C#, some in VB, etc. No need for special Visual Studio support. That’s the beauty of the build provider extensibility.

Also, in Web Applications you don't get error detection in pages/controls as the compiler only compiles your codebehind classes and not the markup code (in MVC you can fix this using the MvcBuildViews option), which is compiled at runtime.

Visual Studio

Because Web Applications are Visual Studio projects you get some features not available in Web Sites. For instance, you can use build events to perform a variety of tasks, e.g. minify and/or combine Javascript files.

Another nice feature introduced in Visual Studio 2010 is Web.config transformation. This is also not available in Web Sites.

Building a Web Application is faster than building a Web Site, specially for large sites. This is mainly because Web Applications do not compile the markup code. In MVC if you set MvcBuildViews to true then it compiles the markup code and you get error detection, which is very useful. The down side is that every time you build the solution it builds the complete site, which can be slow and inefficient, specially if you are not editing the site. l find myself turning MvcBuildViews on and off (which requires a project unload). On the other hand, with Web Sites you can choose if you want to build the site as part of the solution or not. If you choose not to, then building the solution is very fast, and you can always click on the Web Site node and select Build, if you’ve made changes.

In an MVC Web Application project you have extra commands and dialogs for common tasks, like ‘Add View’, ‘Go To View’, ‘Add Controller’, etc. These are not available in an MVC Web Site.

If you use IIS Express as the development server, in Web Sites you can add virtual directories. This option is not available in Web Applications

link|improve this answer
31  
Because the programmers write the application, the application is then built. The test team tests the application on the test system. Then the customer installs the applications. That LAST think you want is anyone making live changes! – Ian Ringrose Jun 23 '09 at 21:43
7  
I'm not saying making live changes is good or bad, just that webapp projects doesn't support them. – Max Toro Jun 23 '09 at 23:25
11  
Which is a good thing IMHO. It makes a mockery of any code, test, release process which has to be the bedrock of any serious application – Rob Nicholson Aug 21 '09 at 12:40
6  
To me having the choice is the best, on websites you can always inherit from a pre-compiled base class if you want to. There are many languages/frameworks (e.g. PHP) where people are used to the idea of deploying source code. That doesn't mean those are not 'serious' applications. – Max Toro Aug 25 '09 at 20:29
15  
+1 for having the stones to go against general "accepted" opinion – roosteronacid Sep 28 '09 at 12:32
show 2 more comments
feedback

Chek out the article I wrote dedicated to the differences between Web Application Projects vs Web Site Projects at http://vishaljoshi.blogspot.com/2009/08/web-application-project-vs-web-site.html

link|improve this answer
1  
Welcome, Vishal! This great post will now be my answer to anyone who asks about the difference. – John Saunders Aug 14 '09 at 4:59
Ditto. Excellent article, Vishal. – Josh Kodroff Oct 22 '09 at 14:11
feedback

Web Site = use when the website is created by graphic designers and the programmers only edits 1 or 2 pages

Web Application = use when the application is created by programmers and the graphic designers only edit 1 or two paged/images.

Web Sites can be worked on using any HTML tools without having to have developer studio, as project files don’t need to be updated etc. Web Applications are best when the team is mostly using developer studio and there is a high code content.

link|improve this answer
feedback

I posted ASP.NET: Web Site versus Web Application Project which may answer your question.

In short, stick to the Web Application project if you're doing any serious work.

link|improve this answer
2  
@IrishChieftain, here on SO answers containing only links are frowned upon. You should provide an excerpt of salient points from the link. – Robert S. Dec 30 '08 at 16:00
15  
+1 for your link/post. I like links and never frown upon them. That's called the "IntarWeb", isn't it? – splattne Jan 5 '09 at 10:59
1  
I didn't vote you down, as the link is good, but there's an accepted way of doing things here. There's a SOFAQ post that explains the blog-linking policy. I'll see if I can find it. – Robert S. Jan 5 '09 at 15:26
2  
Thanks Out Into Space :-) As far as an policy goes, I think if the link answers the question, then what more can one ask for? – IrishChieftain Jan 5 '09 at 19:54
2  
salient points is repitious. someone offering quality support should continue to be rewarde for the effort not chastized. Let them move on and help others. The one in need can determine if the link was helpful and vote up or down. Move on already. – marc11h Dec 22 '11 at 16:03
show 7 more comments
feedback

Unless you have a specific need for a dynamically compiled project, don't use a web site project.

Why? Because web site project will drive you up the wall when trying to change or understand your project. The static typing find features (e.g. find usages, refactor) in Visual Studio will all take forever on any reasonably sized project. For further information, see the Stack Overflow question Slow “Find All References” in Visual Studio.

I really can't see why they dropped web applications in Visual Studio 2005 for the pain-inducing, sanity-draining, productivity carbuncle web site project type.

link|improve this answer
feedback

Web sites are dynamically compiled and source is distributed with them. Web Applications can be compiled into a single DLL and deployed.

You cannot use the app_code folder in WAP projects, but you can with WSP.

There is a bit of MSDN documentation between WAP/WSP.

link|improve this answer
feedback

This may sound a bit obvious, but I think it's something that is misunderstood because Visual Studio 2005 only shipped with the web site originally. If your project deals with a website that is fairly limited and doesn't have a lot of logical or physical separation, the website is fine. However if it is truly a web application with different modules where many users add and update data, you are better off with the web application.

The biggest pro of the website model is that anything in the app_code section is dynamically compiled. You can make C# file updates without a full redeploy. However this comes at a great sacrifice. A lot of things happen under the covers that are difficult to control. Namespaces are difficult to control and specific DLL usage goes out the window by default for anything under app_code since everything is dynamically compiled.

The web application model does not have dynamic compilation, but you gain control over the things that I have mentioned.

If you are doing n-tier development, I highly recommend the web application model. If you are doing a limited web site or a quick and dirty implementation, the web site model may have advantages.

More detailed analysis can be found in:

link|improve this answer
>The biggest pro of the website model is that anything in the app_code section is dynamically compiled. This has a big downside as well. My web site is hosted with webhost4life who are cheap but feature rich. The downside is that they recycle the worker process very frequently (15 mins?) which means that the next user has a very slow first-page-out as the application is re-compiled. – Rob Nicholson Aug 21 '09 at 12:42
feedback

One thing to watch out for is that Website projects are difficult to build with MSBuild. You will only come up against this is if you are planning to automate the build which has always worked extremely well for me.

link|improve this answer
feedback

One additional benefit of the Web Application is that it produces a DLL suitable for static analysis. Trying to use tools like NDepend on a Web Site project is not fun.

link|improve this answer
feedback

Continuous integration was much simpler for me when using Web Application projects. I've tried both, and the website required jumping through some hoops with Cruise Control.Net.

link|improve this answer
feedback

With web application (project),

  1. You can create an MVC application.
  2. Visual Studio stores the list of files in a project file (.csproj or .vbproj), rather than relying on the folder structure.
  3. You cannot mix Visual Basic and C#.
  4. You cannot edit code without stopping a debugging session.
  5. You can establish dependencies between multiple web projects.
  6. You must compile the application before deployment, which prevents you from testing a page if another page will not compile.
  7. You do not have to store the source code on the server.
  8. You can control the assembly name and version.
  9. You cannot edit individual files after deployment without recompiling.
link|improve this answer
1  
This is from MCTS self paced training kit exam 70-515 book – user738794 Jul 7 '11 at 12:01
feedback

I recommend you watch the video Web Application Projects & Web Deployment Projects on the ASP.NET website which explains the difference in great detail, it was quite helpful to me.

By the way, don't get confused by the title, a great part of the video explains the difference between website projects and web application projects and why Microsoft re-introduced Web application projects in Visual studio 2005 (as you probably already know, it originally shipped with only website projects then web application projects were added in SP1). A great video I highly recommend for anyone who wants to know the difference.

link|improve this answer
feedback

Some details from Apress – Pro ASP.NET 3.5 in C# 2008 Second Edition

Websites and Web Projects

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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