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

Saturday, January 11, 2014

Jquery basics

What is jQuery?

  • jQuery is a lightweight, "write less, do more", JavaScript library.
  • The purpose of jQuery is to make it much easier to use JavaScript on your website.
  • jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code.
  • jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and DOM manipulation.

The jQuery library contains the following features:

  • HTML/DOM manipulation
  • CSS manipulation
  • HTML event methods
  • Effects and animations
  • AJAX
  • Utilities

Why jQuery?

  • There are lots of other JavaScript frameworks out there, but jQuery seems to be the most popular, and also the most extendable.
    Many of the biggest companies on the Web use jQuery, such as:
  • Google
  • Microsoft
  • IBM
  • Netflix


Adding jQuery to Your Web Pages

There are several ways to start using jQuery on your web site. You can:
  • Download the jQuery library from jQuery.com
  • Include jQuery from a CDN, like Google


========================Thnk you========================