The main idea behind this article is to insert data using jQuery AJAX to avoid postback. AJAX offers users a seamless way to work with your interface, no waiting for whole pages to load. jQuery has a set of tools to make it super simple to implement. Most everyone knows what iAJAX is. But for the beginners i would like to provide some information regarding the AJAX. W hat is AJAX? AJAX is a short hand for asynchronous JavaScript and XML. Which plainly means that instead of waiting for the whole page to load, you can load only what you need to. So if you only need to update one small text part of your site, you don’t have to worry about loading everything else on that page. A vast majority of sites use this technology now. Probably one of the most popular uses is an auto complete feature for the search box at Google and Yahoo. If you see another term XHR, which is shorthand for XML HTTP request, it’s the same thing. Do...