Re: How to retain IIS session ? - WeOnlyDo Discussion board

Re: How to retain IIS session ? (General questions)

by wodDamir, Saturday, March 07, 2009, 21:08 (5739 days ago) @ Don

Don,

You need to provide your session headers/cookies to your new request. You can do that by simply copying the Headers/Cookies from response to your next request. I.e:

For i = 0 To http1.Response.Headers.Count - 1
http1.Request.Headers.Add http1.Response.Headers(i)
Next i

You should do the same for cookies.

Can you try something like that?

Regards,
Damba


Complete thread: