Here's a JScript example for the client side, that submits form data to another page: var objHTTP, strResult; objHTTP = new ActiveXObject('Microsoft.XMLHTTP'); objHTTP.Open('POST',"OtherPage.asp",false); objHTTP.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); objHTTP.send("id=1&user="+txtUser.value+"&password="+txtPassword.value); strResult=objHTTP.responseText;