Получить Cookies из ответа
Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
Call objHTTP.open("POST", strURL, False)
objHTTP.SetRequestHeader "Content-Type","application/x-www-form-urlencoded"
Call objHTTP.send("in_user_id=xxxxxx&in_password=xxxxx")
response.write objHTTP.responseText
этот сайт по идее передает в ответе куки (напр. информацию о сессии).
Как бы их извлечь из ответа?