Tuesday, May 12, 2009

Ajax: A New Approach to Web Applications

Ajax is short for Asynchronous JavaScript and XML. It was coined in 2005 by Jesse James Garrett. Ajax is not a specific programming language or technology. Ajax is a Web development technique. Ajax brings dynamic data interactivity to Web pages. For example, a Web client sorts a column of data, and the data is automatically changed with live server data without reloading the entire page.
If anything about current interaction design can be called “glamorous,” it’s creating Web applications. After all, when was the last time you heard someone rave about the interaction design of a product that wasn’t on the Web? (Okay, besides the iPod.) All the cool, innovative new projects are online.Despite this, Web interaction designers can’t help but feel a little envious of our colleagues who create desktop software. Desktop applications have a richness and responsiveness that has seemed out of reach on the Web. The same simplicity that enabled the Web’s rapid proliferation also creates a gap between the experiences we can provide and the experiences users can get from a desktop application.
That gap is closing. Take a look at Google Suggest. Watch the way the suggested terms update as you type, almost instantly. Now look at Google Maps. Zoom in. Use your cursor to grab the map and scroll around a bit. Again, everything happens almost instantly, with no waiting for pages to reload.

Google Suggest and Google Maps are two examples of a new approach to web applications that we at Adaptive Path have been calling Ajax. The name is shorthand for Asynchronous JavaScript + XML, and it represents a fundamental shift in what’s possible on the Web.
Defining Ajax

Ajax isn’t a technology. It’s really several technologies, each flourishing in its own right, coming together in powerful new ways.
Ajax incorporates:
* standards-based presentation using XHTML and CSS;
* dynamic display and interaction using the Document Object Model;
* data interchange and manipulation using XML and XSLT;
* asynchronous data retrieval using XMLHttpRequest;
* and JavaScript binding everything together.

The classic web application model works like this: Most user actions in the interface trigger an HTTP request back to a web server. The server does some processing — retrieving data, crunching numbers, talking to various legacy systems — and then returns an HTML page to the client. It’s a model adapted from the Web’s original use as a hypertext medium, but as fans of The Elements of User Experience know, what makes the Web good for hypertext doesn’t necessarily make it good for software applications.

Ajax Overview 1
Figure 1: The traditional model for web applications (left) compared to the Ajax model (right).

This approach makes a lot of technical sense, but it doesn’t make for a great user experience. While the server is doing its thing, what’s the user doing? That’s right, waiting. And at every step in a task, the user waits some more.

Obviously, if we were designing the Web from scratch for applications, we wouldn’t make users wait around. Once an interface is loaded, why should the user interaction come to a halt every time the application needs something from the server? In fact, why should the user see the application go to the server at all?

How Ajax is Different
An Ajax application eliminates the start-stop-start-stop nature of interaction on the Web by introducing an intermediary — an Ajax engine — between the user and the server. It seems like adding a layer to the application would make it less responsive, but the opposite is true.

Instead of loading a webpage, at the start of the session, the browser loads an Ajax engine — written in JavaScript and usually tucked away in a hidden frame. This engine is responsible for both rendering the interface the user sees and communicating with the server on the user’s behalf. The Ajax engine allows the user’s interaction with the application to happen asynchronously — independent of communication with the server. So the user is never staring at a blank browser window and an hourglass icon, waiting around for the server to do something.

Ajax Overview 2
Figure 2: The synchronous interaction pattern of a traditional web application (top) compared with the asynchronous pattern of an Ajax application (bottom).

Every user action that normally would generate an HTTP request takes the form of a JavaScript call to the Ajax engine instead. Any response to a user action that doesn’t require a trip back to the server — such as simple data validation, editing data in memory, and even some navigation — the engine handles on its own. If the engine needs something from the server in order to respond — if it’s submitting data for processing, loading additional interface code, or retrieving new data — the engine makes those requests asynchronously, usually using XML, without stalling a user’s interaction with the application.

Who’s Using Ajax
Google is making a huge investment in developing the Ajax approach. All of the major products Google has introduced over the last year — Orkut, Gmail, the latest beta version of Google Groups, Google Suggest, and Google Maps — are Ajax applications. (For more on the technical nuts and bolts of these Ajax implementations, check out these excellent analyses of Gmail, Google Suggest, and Google Maps.) Others are following suit: many of the features that people love in Flickr depend on Ajax, and Amazon’s A9.com search engine applies similar techniques.

These projects demonstrate that Ajax is not only technically sound, but also practical for real-world applications. This isn’t another technology that only works in a laboratory. And Ajax applications can be any size, from the very simple, single-function Google Suggest to the very complex and sophisticated Google Maps.
Ajax only scratched the surface of the rich interaction and responsiveness that Ajax applications can provide. Ajax is an important development for Web applications, and its importance is only going to grow. And because there are so many developers out there who already know how to use these technologies, we expect to see many more organizations following Google’s lead in reaping the competitive advantage Ajax provides.

Moving Forward
The biggest challenges in creating Ajax applications are not technical. The core Ajax technologies are mature, stable, and well understood. Instead, the challenges are for the designers of these applications: to forget what we think we know about the limitations of the Web, and begin to imagine a wider, richer range of possibilities.

Thursday, March 27, 2008

ASP.NET (Active Server Pages)

ASP.NET has better language support, a large set of new controls and XML based components, and better user authentication. ASP.NET provides increased performance by running compiled code. ASP.NET code is not fully backward compatible with ASP.

ASP.NET is a server side scripting technology that enables scripts (embedded in web pages) to be executed by an Internet server.
-> ASP.NET is a Microsoft Technology
-> ASP stands for Active Server Pages
-> ASP.NET is a program that runs inside IIS

New in ASP.NET
-> Better language support
-> Programmable controls
-> Event-driven programming
-> XML-based components
-> User authentication, with accounts and roles
-> Higher scalability
-> Increased performance - Compiled code
-> Easier configuration and deployment
-> Not fully ASP compatible

Advantages of ASP.NET
1. Language Support
-> ASP.NET uses the new ADO.NET.
-> ASP.NET supports full Visual Basic, not VBScript.
-> ASP.NET supports C# (C sharp) and C++.
-> ASP.NET supports JScript as before.

2.ASP.NET Controls
-> ASP.NET contains a large set of HTML controls. Almost all HTML elements on a page can be defined as ASP.NET control objects that can be controlled by scripts.
-> ASP.NET also contains a new set of object oriented input controls, like programmable list boxes and validation controls.
-> A new data grid control supports sorting, data paging, and everything you expect from a dataset control.

3.Event Aware Controls
-> All ASP.NET objects on a Web page can expose events that can be processed by ASP.NET code.
-> Load, Click and Change events handled by code makes coding much simpler and much better organized.

4.ASP.NET Components
-> ASP.NET components are heavily based on XML. Like the new AD Rotator, that uses XML to store advertisement information and configuration.

5.User Authentication
-> ASP.NET supports forms-based user authentication, including cookie management and automatic redirecting of unauthorized logins.(You can still do your custom login page and custom user checking).

6.User Accounts and Roles
-> ASP .NET allows for user accounts and roles, to give each user (with a given role) access to different server code and executables.
-> High ScalabilityMuch has been done with ASP.NET to provide greater scalability.
-> Server to server communication has been greatly enhanced, making it possible to scale an application over several servers. One example of this is the ability to run XML parsers, XSL transformations and even resource hungry session objects on other servers.

7.Compiled Code
-> The first request for an ASP.NET page on the server will compile the ASP.NET code and keep a cached copy in memory. The result of this is greatly increased performance.

8.Easy Configuration
-> Configuration of ASP.NET is done with plain text files.
Configuration files can be uploaded or changed while the application is running. No need to restart the server. No more metabase or registry puzzle.

9.Easy Deployment
->No more server restart to deploy or replace compiled code. ASP.NET simply redirects all new requests to the new code.

10.Compatibility
-> ASP.NET is not fully compatible with earlier versions of ASP, so most of the old ASP code will need some changes to run under ASP.NET.
-> To overcome this problem, ASP.NET uses a new file extension ".aspx". This will make ASP.NET applications able to run side by side with standard ASP applications on the same server.

ASP.NET 2.0 improves ASP.NET by adding several new features.
Improvements in ASP.NET 2.0

ASP.NET 2.0 was designed to make web development easier and quicker.
Design goals for ASP.NET 2.0:
-> Increase productivity by removing 70% of the code
-> Use the same controls for all types of devices
-> Provide a faster and better web server platform
-> Simplify compilation and installation
-> Simplify the administration of web applications

What's New in ASP.NET 2.0?
Some of the new features in ASP.NET 2.0 are:
-> Master Pages, Themes, and Web Parts
-> Standard controls for navigation
-> Standard controls for security
-> Roles, personalization, and internationalization services
-> Improved and simplified data access controls
-> Full support for XML standards like, XHTML, XML, and WSDL
-> Improved compilation and deployment (installation)
-> Improved site management
-> New and improved development tools.