4

I want to know what is the difference between web application and web site exactly? Because I feel in trouble, as I want to integrate tasks. Part of them are built as a web site, and the other as a web application. When I added them to the web site and build the solution, I had many errors that I could not handle. It can't handle name spaces and some classes can't be read. Please help.

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
  • 1
    you could fix your question title to make it more easier that you want to know main differences between two website project types. – Junior Mayhé Oct 11 '10 at 19:50
  • 1
    possible duplicate of [ASP.NET: Web Site or Web Application?](http://stackoverflow.com/questions/398037/asp-net-web-site-or-web-application) – Corbin March Oct 11 '10 at 20:29
  • Have a look at http://stackoverflow.com/questions/3698362/difference-between-website-and-web-application-in-visual-studio/11607329#11607329 – Ashwin Singh Jul 23 '12 at 06:23

3 Answers3

3

About your problem, perhaps you should add References to your project, so classes could be found?

Click on those not found classes and press Shift Alt F10 to find referenced classes in other project.

To answer the difference between web application and web site, you can see it here.

Junior Mayhé
  • 16,144
  • 26
  • 115
  • 161
2

You can find a summary of differences here.

I hope this helps.

Damian Schenkelman
  • 3,505
  • 1
  • 15
  • 19
2

A web application is generally an application where the interface is delivered to you over the network/Internet. So a web application can reside on a website.

In the context of Visual studio, here is Microsoft's explanation of the differenve between the web application and web site projects: link http://msdn.microsoft.com/en-us/library/aa730880(VS.80).aspx#wapp_topic5

Billism
  • 46
  • 2