Is there a way to capture the last landing page's HTTP response/HTML in .NET?
This is what happens:
HttpClient to POST www.website.com/loginwindow.location = www.website.com/newLocationWhen I use HttpClient, it is only able to capture the new location in Step 2 and it will not capture anything further after that.
Is there a way to capture HTTP response in Step 4? I'm specifically after the HTML code that is passed back to the browser.