Monday, January 20, 2014

Diffrence between Website and WebApplication



Web application
Web site
1
In software engineering, a web application is an application that is accessed via a web browser over a network such as the Internet or an intranet.
A website  is a collection of related web pages, images, videos or other digital assets that are addressed relative to a common Uniform Resource Locator (URL).
2
A website is informational
A web application is interactive
3
In web application we have chance of select only one programming language during creation of project either C# or VB.NET.
In website we can create pages in multi programming languages that means we can create one page code in C# and another page code in vb.net.
4
We need to pre-compile the site before deployment.
No need to recompile the site before deployment.
5
If we make small change in one page we need to re-compile the entire sites.
If we make any code changes those files only will upload there is no need to re-compile entire site
6
Whenever we create Web Application those will automatically create project files (.csproj or .vbproj).
  Web Sites won’t create any .csproj/.vbproj files in project

7
If we create any class files / functions those will be placed anywhere in the applications folder structure and it is precomplied into one single DLL.
If we create any class files/functions those will be placed in ASP.NET folder (App_Code folder) and it's compiled into several DLLs (assemblies) at runtime.
8
Right choice for enterprise environments where multiple developers work unitedly for creating,testing and deployment.
Right choice when one developer will responsible for creating and managing entire website.
9
Eg  They require you to  download. But still use your internet access
Eg

No comments:

Post a Comment