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