Re: duplicated cookies - WeOnlyDo Discussion board

Re: duplicated cookies (General questions)

by wodDamir, Monday, November 16, 2009, 18:30 (5485 days ago) @ Klinzter

Klintzer,

Why not simply remove the specific cookie after?

Once you copy the cookies, simply iterate thru the collection and remove the first occurance of the Session cookie. Something like this:

[code] For Each cookie In wodHttp1.Request.Cookies
If cookie.Name = Session Then
wodHttp1.Request.Cookies.Remove cookie
Exit For
End If
Next[/code]

Can you try something like that?

Regards,
Damba


Complete thread: