duplicated cookies (General questions)
hello there..
I have a web post login to my website and then I get 5 cookies but two of them have the same cookie name but with different data..
something like this
Userlogin = 6532659
Logindata = 9865323
Session = psolwksd
Tracking = 65986532
Session = 98653231
something like that is what I see in the cookies but the second session is the one that has the right data..
how can I add those cookies but the first session?
im using this but its adding everything
Dim oldcookie As HttpCookie
For Each oldcookie In Http1.Response.Cookies
Http1.Request.Cookies.Add oldcookie.Name, oldcookie.Value
Next