S
sean
/////////////////////
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "http://somesite/logon.asp", false, "domain\username",
"password");
xmlhttp.send();
////////////////////
got an error, javascript error: Incorect syntax.
If I put:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "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.XMLHTTP");
xmlhttp.open("POST", "http://somesite/logon.asp", false, "domain\username",
"password");
xmlhttp.send();
////////////////////
got an error, javascript error: Incorect syntax.
If I put:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "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