Re: Duplicating COOKIES in WODHTTP (General questions)
This doesnt work. I am trying this but if you just changed the cook.value then that wouldn't change the one in .request.cookies, thats the one i am trying to fix.
please help
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