I am working in AJAX and use a DropDownList at this time i face probleam in XMLHTTP Request. Define XMLHTTP request and use ?
xmlHttp = getXMLHTTP(); if (xmlHttp) { xmlHttp.onreadystatechange = doReadyStateChange; xmlHttp.open("GET", requestUrl, true); xmlHttp.send();
}
Satyapriya NayakPosted Nov 23, 2011, 12:42 PM
The XMLHttpRequest object is used to exchange data with a server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
Refer
http://www.w3schools.com/ajax/ajax_xmlhttprequest_create.asp
Thanks