How to insert data using jQuery AJAX to avoid postback.
Posted by: EggHeadCafe.com New Articles,
on 07 Sep 2011 |
View original | Bookmarked: 0 time(s)
The key to AJAXs concept is asynchronous. This means something happens to the page after its loaded. Traditionally, when a page is loaded, the content remains the same until the user leaves the page. With AJAX, JavaScript grabs new content from the server and makes changes to the current page. This all happena within the lifetime of the page, no refresh or redirection is needed. Here we insert data via jQuery AJAX read more
By Tom Ritter