string m_request = some_web_page;
HttpWebRequest request = (HttpWebRequest )WebRequest.Cre ate(m_request );
HttpWebResponse response = (HttpWebRespons e)request.GetRe sponse();
Which works fine, but I need to set and send a cookie with the WebRequest.
How do I do that?
HttpWebRequest request = (HttpWebRequest )WebRequest.Cre ate(m_request );
HttpWebResponse response = (HttpWebRespons e)request.GetRe sponse();
Which works fine, but I need to set and send a cookie with the WebRequest.
How do I do that?
Comment