訪問者によるクリックなどのアクションによって送信するのではなく、プログラムからデータを POST 送信する方法です。 GET 送信なら location.href='xxxx.co.jp?id=123&pass=abc'(Javascript)、Response.Redirect("xxxx.co.jp?id=123&pass=abc")(ASP)のようにすれば良いが、POST 送信するには以下のようにします。 Dim objXML AS Object Dim strXMLDoc AS String Dim intRet AS Integer Dim strURL AS String Dim strKey AS String strURL = "xxxx.co.jp" strKey = "id=123&pass=abc" Set objXML = Server.CreateObject("