one user unable to create xmlhttp object
I have one user who is running Internet Explorer version:
Version 6.0.2800.1106.
SP1;Q823353
I have the following code that tries to create the xmlhttp object. For some reason, it will not create for her. I thought most browsers were covered by this code.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}
Please advise.
Thanks.
Melissa Mussitsch
|