Category Archives: Articles

Getting started with AJAX using PHP : Tutorial

AJAX stands for Asynchronous JavaScript And XML. Any server side technology that supports JavaScript also supports AJAX. AJAX is a browser technology, and is therefore independent of web server platforms. In this article we will learn about what AJAX is, … Continue reading

Posted in Articles | Leave a comment

Using ICALLBACKEventHandler in ASP.NET

About ICallbackEventHandler: ASP.NET 2.0 introduced an interface named ICallbackEventHandler (System.Web.UI.ICallbackEventHandler) to allow asynchronous communication with the server. Unlike Postback, in Callback only user defined information is sent to the server. Instead of using Postback to post the page, ICallbackEventHandler uses … Continue reading

Posted in Articles | Leave a comment

Introducing Asynchronous Java Script and XML (Ajax) in ASP.NET

One of the most important challenges web application developers face is the requirement for a fast and responsive user interface.  AJAX was primary designed and developed with the intent of providing a fast and responsive user interface to address these … Continue reading

Posted in Articles | Leave a comment

AjaxTags Tutorial (Part 2)

Creating an Autocomplete Textbox One of the cool tags of AjaxTags is ajax:autocomplete. We will use this tag in this following JSP example. <fieldset><legend>ajax:autocomplete example</legend><form><label for=”country”>Country Name: </label><input type=”text” name=”country” id=”country”/></form> <ajax:autocompletesource=”country”target=”country”baseUrl=”country_list.view”parameters=”country={country}”className=”autocomplete”minimumCharacters=”1″/></fieldset> Our objective here is to make an autocomplete … Continue reading

Posted in Articles | Leave a comment

Introduction to the Dojo Toolkit : Tutorial

This article is geared towards people with some javascript knowledge, that might have used another ajax/js framework before, but now have a really pressing need to use some of the features found in dojo. So, what is it really? Dojo … Continue reading

Posted in Articles | Leave a comment