<%@ LANGUAGE="JavaScript" %> <% socket = Server.CreateObject( "Socket.TCP" ); postData = "action=test&id=2000" socket.SendLine "POST /testPost.asp HTTP/1.0" socket.SendLine "Server: www.myserver.com" socket.SendLine "Content-Length: " & len( postData ) Socket.SendLine "Content-Type: application/x-www-form-urlencoded" socket.SendLine "" socket.SendLine postData %> There you go!