|
Subject:
|
one user unable to create xmlhttp object
|
|
Posted By:
|
mussitsch
|
Post Date:
|
8/31/2006 8:30:38 AM
|
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
|
|
Reply By:
|
ChrisScott
|
Reply Date:
|
8/31/2006 9:14:24 AM
|
Hi Melissa,
Is their browser set up to "script ActiveX controls marked safe for scripting"?
This setting can be found under tools -> internet options -> security -> custom level
HTH,
Chris
|
|
Reply By:
|
mussitsch
|
Reply Date:
|
8/31/2006 9:48:58 AM
|
Unfortunately this setting is set to enabled (i.e. Aktivieren since she is over in Germany).
But I do believe it is some browser setting since a colleague of hers can execute the code fine. Do you think upgrading to IE 6 sp2 will fix her problem?
Thanks. Melissa
|