/////////////////////
var xmlhttp = new ActiveXObject(" Microsoft.XMLHT TP");
xmlhttp.open("P OST", "http://somesite/logon.asp", false, "domain\usernam e",
"password") ;
xmlhttp.send();
////////////////////
got an error, javascript error: Incorect syntax.
If I put:
var xmlhttp = new ActiveXObject(" Microsoft.XMLHT TP");
xmlhttp.open("P OST", "http://somesite/logon.asp", false);
xmlhttp.send();
Everything is fine but my goal is to pass windows authentication.
What's wrong with the 1st statement?
Thnx,
J
var xmlhttp = new ActiveXObject(" Microsoft.XMLHT TP");
xmlhttp.open("P OST", "http://somesite/logon.asp", false, "domain\usernam e",
"password") ;
xmlhttp.send();
////////////////////
got an error, javascript error: Incorect syntax.
If I put:
var xmlhttp = new ActiveXObject(" Microsoft.XMLHT TP");
xmlhttp.open("P OST", "http://somesite/logon.asp", false);
xmlhttp.send();
Everything is fine but my goal is to pass windows authentication.
What's wrong with the 1st statement?
Thnx,
J
Comment