I'm using a Webbrowser Control in my Wp7 app, but I can't seem to put images that are in the App directory, in the webbrowser.
I've put some images in a folder in the same directory as the .cs and .xaml files. Now I try to put them in the webbrowser control, but I can't seem to get this to work.
<img src="images/photo.jpg"/>
<img src="/images/photo.jpg"/>
The two above obviously don't work, my guess is that it should be something like this:
<img src="/SilverlightApplication;component/photo.jpg"/>
"SilverlightApplication" and "component" should be replaced by something else, but I don't know what :(