Re: display cookie (General questions)
Klinzter,
You should read it from wodHttpDLX Cookies collection.
[code]Debug.Print http1.Response.Cookies.ToString[/code]
[code]Dim i As Integer
For i = 0 To http1.Response.Cookies.Count - 1
Debug.Print http1.Response.Cookies(i).Name & : & http1.Response.Cookies(i).Value
Next i[/code]
Drazen
Complete thread:
- display cookie - Klinzter, 2008-12-12, 17:53
- Re: display cookie - woddrazen, 2008-12-12, 18:05