shikhavaidh 0 Newbie Poster

Hi


I am trying to run my AJAX Code in Firefox its not working.

I am checking for other browser also

function CretexmlHttp()
{
try
{
XmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
//Here we will assign ready state change event where we will
// handle the response data from the server
XmlHttp.onreadystatechange=stateChangeEventHandler;
}
//If you have an older version of the ie you will have
// Microsoft.XMLHTTP instead of Msxml2.XMLHTTP
catch (e)
{
try
{
XmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
//fOR Firefox
XmlHttp=new XMLHttpRequest();
}

but still it is taking hell lot of time and not populating the dropdown.

Another thing is even alert box is not coming on Opera browser.
And i need to run my Aspx page in all the five browsers.

Please help.....