2008-12-05 89 views

回答

2

我看到了一個關於這一點,可以幫助設置cookie發佈:

link text

這裏是他的代碼片段:

Sub test() 
Dim w As New WinHttp.WinHttpRequest 
Dim t As String, qs As String 
qs = "this=that&more=less" 
w.Open "POST", "http://www.comparity.net/perl/form.pl?a=b", False 
w.setRequestHeader "Cookie", "one=foo" 
w.setRequestHeader "Cookie", "two=bar" 
w.send qs 
t = w.responseText 
WriteTextFile "c:\test.html", t 
Debug.Print w.Status 
Debug.Print t 
End Sub 

不知道如何取得餅乾 - 的一個主要海報提到XmlHttp出於安全原因去掉cookie。

希望能讓你開始!

+0

謝謝,那是一個開始。 – 2008-12-09 03:56:21