Re: get a cookie from cookies (General questions)
Klinzter,
I'm not sure that I understand your question.
You can read cookies from Cookies collection
[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]
So you want to read only one cookie value from collection? If I misunderstand your question can you maybe explain it little bit more?
Drazen