1
假設我沒有運行任何類型的服務器端腳本,我如何才能在VBA代碼中使用set
和get
Cookie?Set/Get Web Cookies
假設我沒有運行任何類型的服務器端腳本,我如何才能在VBA代碼中使用set
和get
Cookie?Set/Get Web Cookies
我看到了一個關於這一點,可以幫助設置cookie發佈:
這裏是他的代碼片段:
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。
希望能讓你開始!
謝謝,那是一個開始。 – 2008-12-09 03:56:21