I'm using the xmlhttp object code Lonkero posted earlier on this thread (up above). Here it is again...

Code:
$term="54321"
$web=CreateObject("microsoft.xmlhttp")
$web.Open("POST","http://intranet.mycompany.com/empinfo.asp", not 1)
$web.setRequestHeader = "Content-Type", "application/x-www-form-urlencoded"
$web.Send("empno="+$term)
$response = $web.ResponseBody
? $response

_________________________
silence is golden, but duct tape is silver