vote up 0 vote down star

hi

I am logging into a site using a WebBrowser, then i want use regex to get some data , but webRequest didnt use web Browse cookie ,

my webBrowser is in public , is there any way to useing webbrowser cookie in webrequest ?

flag

33% accept rate
really simple i want use it for getting news :) but site protected by login page , so this way easiest to login :) – madman Mar 16 at 14:33

1 Answer

vote up 1 vote down

You can use a CookieContainer for a Webrequest.

 web_cookies = new CookieContainer();
 // Create a 'WebRequest' object with the specified url.                 
 HttpWebRequest myWebRequest = (HttpWebRequest)WebRequest.Create(url);

 myWebRequest.CookieContainer = web_cookies;

Hope this helps.

Ok, you want to do a log in. Thats is different story. You can use NetworkCredential for that.

public string get_secure_webpage(string url, string username, string password)
    {
        WebRequest myWebRequest = WebRequest.Create(url);
        NetworkCredential networkCredential = new NetworkCredential(username, password);
        myWebRequest.Credentials = networkCredential;

...

link|flag
can you add some comment to this code ? i cant undrestand – madman Mar 16 at 14:35
I am not exactly sure what you want to do. Maybe this page will help: msdn.microsoft.com/en-us/library/… – Holli Mar 16 at 15:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.