Reputation: 11423
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.
Upvotes: 4
Views: 2328
Reputation: 46
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
Upvotes: 2
Reputation: 3545
You can find a summary of differences here.
I hope this helps.
Upvotes: 2
Reputation: 16411
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.
Upvotes: 3