Is there a way to get the HttpWebRequest object to take the set-cookie header into account when being automatically redirected to another page through the AllowAutoRedirect feature? I need it to maintain the cookie information across redirects; I'd rather not have to implement the redirect myself if the framework can do this for me. This must be a common request since most login pages I've seen usually do this.
|
|
|
|||
|
|
|
|
I know to make separate requests (ie. different HttpRequest objects) work with cookies, you need to set the HttpRequest.CookieContainer property on both requests to the same instance of a CookieContainer. You might need that for this case as well. |
||
|
|
|
|
If you don't want to use a CookieContainer, the following code will access a page, providing the cookie in the parameter. Then, it will download all cookies set by that page and return them as a List of strings. Note that AllowAutoRedirect is set to false. If you want to follow the redirect, pull that object out of the HttpWebResponse headers and then manually construct another web request.
|
||
|
|
