private static string ConvertToAbsoluteUrls (string html, Uri relativeLocation) { IHTMLDocument2 doc = new HTMLDocumentClass (); doc.write (new object [] { html }); doc.close (); foreach (IHTMLAnchorElement anchor in doc.links) { IHTMLElement element = (IHTML...
[ 查看全文 ]