I have a webbrowser control in a C# winform, which loads the following text:
<head>
<link rel="stylesheet" type="text/css" href="d:/git/ArticleScraper/reports/default.css">
</head>
Can I find the address of the css (d:/git/ArticleScraper/reports/default.css
) and load it in a textbox editor? It could be a local or online css file with absolute or relative address.
I didn't find any related property or method in the webbrowser control.