I have a BHO library mybho.dll written in C#. I have embedded a Resource file "image.png". I'd like to show this image on some pages. According to what I read, it should look like this:
<img src="res://mybho.dll/image.png">
But Internet Explorer does not find the image. I've tried this one without success:
<img src="res://mybho.dll/#2/image.png">
What is the right way to do it?