Question:Which is correct Syntax for creating an XMLHttpRequest object for Old versions of Internet Explorer (IE5 and IE6) ?
A variable=new ActiveXObject("Microsoft.XMLHTTP");
B variable=new XMLHttpRequest();
C variable=new XMLHttpRequest("Microsoft.XMLHTTP");
D variable=new ActiveXObject();
+ AnswerA
+ Report