I've used several HttpWebRequest
's in the past but they've all been used to login into a site.
I was wondering how does one make the WebRequest
mimic a WebBrowser
as in once you're logged in, navigate to a new page, maybe perform an action there, then go to a different page?
I've researched a little about this before and I think it might involve using the prior request's cookies or something.
My question is how do I (I'm assuming) get the cookies from the previous session, then navigate to a page, or complete an action as if we were still on the last request if that makes sense.