Notes 8 & IE8

We have recently upgraded to IE8 which is causing problems running a domino application.

The error is:-

When clicking on create new call a box appears on the screen with the head: Internet explorer script error

an error has occurred in the script on this page.

line 60

character 2

error object required

code 0

The offending code, (which works in IE7) is:-

var xmlDoc=new ActiveXObject(“Microsoft.XMLDOM”);

xmlDoc = objHttp.responseXML;



var res = xmlDoc.getElementsByTagName("GetUserDataReturn")[0].childNodes[0].nodeValue.split(",");



doc.callCSDPIN.value = res[0];

doc.callCSDPINDisp.innerHTML =res[0];

Any guidance on this would be greatly appreciated.

Thanks

Mike

Subject: IE compatibility mode

can you run IE in compatibility mode?

use the following tag to suggest IE8 render the page like IE7

Subject: IE8

thanks for this. Could you clarify where this code should go? Before each IE call?

Subject: In the head section…

…of the HTML page.