tags:

views:

89

answers:

1

Hi,

How do I convert a PageURI & Href to an absolute URL/URI in C#?

i.e. I am scanning a web page at a given PageURI and in the HTML have link/node with a HREF, and want to translate this HREF into a valid absolute URI.

Background - note the trouble I was having here

+1  A: 

new URI(uri, string) does it

Greg