Re: Manage WEB in background
Is it an upload through a form submission?
Re: Manage WEB in background
Yes, but need to store cookies at first place, so it's a little more complicated.
Re: Manage WEB in background
Think of it in simple terms.
You need to request the cookie - Thats one web request,
You need to request the form submission - Thats the second request.
I had to do something similar recently, but there was no cookie involved. My login and upload is all handled during the one request (form submission) like this:
*** CODE REMOVED TO PREVENT MISUSE ***
If you need to first login, then you need another HttpWebRequest object to login and get the cookie.
Hope this helps, let me know :)