Embed
Email

ajax

Document Sample
ajax
Shared by: ramachandran E
Categories
Tags
Stats
views:
80
posted:
8/30/2009
language:
English
pages:
3
AJAX which stands for asynchronous javascript and xml is a technology which uses asynchronous data transfer instead of synchronous data tranfer between the web page and browser. This means that multiple connections are opened between the browser and the web page at a time so the whole process of data transfer is speeded up in this case.Normally style tags and scripts are parsed one at a time using a single connection.But now using xmlhttprequest object or Microsoft eqvivalent Active X object all the style and script tags are parsed together at the same time using multiple connections. Below i am giving you people an example of Ajax Here we retrive the contents of testingajax html document and show it in a alert box. Ajax Testing



function AjaxRequest(url) { var http_request = false; if (window.XMLHttpRequest) { // Mozilla, Safari,... http_request = new XMLHttpRequest(); if (http_request.overrideMimeType) { http_request.overrideMimeType('text/xml'); // See note below about this line } } else if (window.ActiveXObject) { // IE try { http_request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {} } } if (!http_request) { alert('Giving up :( Cannot create an XMLHTTP instance'); return false; } http_request.onreadystatechange = function() { showhtmlpageContents(http_request); }; http_request.open('GET', url, true); http_request.send(null);



} function showhtmlpageContents(http_request) { if (http_request.readyState == 4) { if (http_request.status == 200) { alert(http_request.responseText); } else { alert('There was a problem with the request.'); } } } Call page using Asynchronous javascript and xml



Now ur testingajax.html will contain response ajax Hello from Rohit D'souza Thats all








Shared by: ramachandran E
About
I am working for Government
Other docs by ramachandran E
ooad
Views: 358  |  Downloads: 30
c++
Views: 204  |  Downloads: 22
Unix Commands Interview Questions
Views: 278  |  Downloads: 54
ajax
Views: 80  |  Downloads: 7
Technical Aptitude Questions eBook
Views: 206  |  Downloads: 41
dbms concepts
Views: 3093  |  Downloads: 175
Servlet- Specific
Views: 55  |  Downloads: 0
unix
Views: 193  |  Downloads: 42
Copy of Unix Commands Interview Questions
Views: 93  |  Downloads: 14
sql
Views: 514  |  Downloads: 89
Related docs
By registering with docstoc.com you agree to our
privacy policy

You are almost ready to download!

You are almost ready to download!