tags:

views:

107

answers:

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.

+1  A: 

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é
+1  A: 

You can find a summary of differences here.

I hope this helps.

Damian Schenkelman
+1  A: 

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
A: 

A feature of a web site that I have found useful in the past is that it can compile to individual DLL's for each of your pages as opposed to a single DLL for a web app. Both approaches are useful depending on your situation, just thought I would mention this as no one else has.

Monkieboy