difference between website and web application
-
The main difference of Website and Web application is : Websites generally deploy source codes in the server if you publish it. Thus VStudio will not compile the total code to produce dll, rather it will place the files in the server with source code. Any change can be easily made in the production server without redeploying the entire project. Web applications on the other hand produces an assembly for all the pages and deploys it to the server. :cool:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
The main difference of Website and Web application is : Websites generally deploy source codes in the server if you publish it. Thus VStudio will not compile the total code to produce dll, rather it will place the files in the server with source code. Any change can be easily made in the production server without redeploying the entire project. Web applications on the other hand produces an assembly for all the pages and deploys it to the server. :cool:
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptThere are more differences. In one case, a friend of many was working with MasterPages and Master-MasterPages. In Web Application, FormC can access FormB, FormA and so on easily. You can't do the same in Web Sites. Web Sites have the advantage only of being able to be loaded "partially" (as each form can be loaded independently).