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 using WebBrowser cookie in webRequest ?
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 using WebBrowser cookie in webRequest ?
You can use a CookieContainer for a Webrequest.
Hope this helps.
Ok, you want to do a log in. Thats is different story. You can use NetworkCredential for that.
...
This will work on most sites, however sites that use subdomains might be a problem.
is this silverlight? if so, since silverlight 3 if you use the browser network stack than you should get cookies for free. By default you get the browser stack when you create n HttpWebrequest using the WebRequest.Create() method. note if you use CreateHTTP method, you get a client stack, which does not include browser cookies by default (you have to do trickery to get them, as described previously)
see http://msdn.microsoft.com/en-us/library/dd920295(VS.95).aspx about the network stacks in silverlight since version 3