parsing on c# httprequest

  • Thread starter Thread starter americanas1
  • Start date Start date
A

americanas1

Hey all, when doing an httprequest/response i open a specific url
which then redirects me to another.

The html coming back is correct on the httpresponse, is the html
coming from the second page/url redirected to.

How can i grab/get the url of the page redirected to? we only have the
first url used on the httprequest.

Thanks in advanced for your help.
 
Hey all, when doing an httprequest/response i open a specific url
which then redirects me to another.

The html coming back is correct on the httpresponse, is the html
coming from the second page/url redirected to.

How can i grab/get the url of the page redirected to? we only have the
first url used on the httprequest.

Try:

response.ResponseUri

Arne
 
Hey all, when doing an httprequest/response i open a specific url
which then redirects me to another.

The html coming back is correct on the httpresponse, is the html
coming from the second page/url redirected to.

How can i grab/get the url of the page redirected to? we only have the
first url used on the httprequest.

Try:

response.ResponseUri

Arne
 
Back
Top