I'm showing an HTML file (Documentation.html)'s content inside a webBrowser control. The HTML file is located as resource.
string htmlFile = Properties.Resources.Documentation;
webBrowser1.DocumentText = htmlFile;
There is an image inside Documentation.html which will be shown properly in any browser:
<img src="Resources/Image.png">
Unfortunately all the text of the HTML-file appears normally but not the image.
Can I set the images path to the resources (like Properties.Resources.Image) or something else?