Re: Duplicating COOKIES in WODHTTP (General questions)
Joshu,
Why don't you try something like:
[php]Dim cook as HttpCookie = new HttpCookie
For each cook in http1.Cookies
if cook.Name = some_name AND cook.Value = old value then
cook.Value = new value
end if
Next[/php]
Can you try something like that?
Regards,
Damba