Hi everyone, I want to tunnel through an HTTP request from my server to a remote server, passing through all the cookies. So I create a new Http**Web**Request object and want to set cookies on it.
Http**Web**Request.CookieContainer is type System.Net.CookieContainer which holds System.Net.Cookies
On my incoming request object:
HttpRequest.Cookies is type System.Web.HttpCookieCollection which holds System.Web.HttpCookies
Basically I want to be able to assign them to each other, but the differing types makes it impossible. Do I have to convert them by copying their values, or is there a better way?
Thanks! -Mike