I just found out, that the tag in HTML is case sensitive.
It costed me whole afternoon and I didn’t understand why my images were not shown
_media = 'media:///servoy_blobloader?servername=....'
_html += '<TR><TD><IMG SRC="' + _media + '"></TD>'
When you put this HTML on a Servoy form, it fails. You don’t see your image.
When you change it into
_media = 'media:///servoy_blobloader?servername=....'
_html += '<TR><TD><img src="' + _media + '"></TD>'
then it works.
Is that normal?