Is there a way to insert a JPEG file into an XML document. The situation is that, I don't have a stylesheet(XSL or CSS).
I could insert a JPEG or GIF with the help of XSL, like
This is the XML part.
<image>
<image-clear1 src="C:\india.gif" width="155" height="40"/>
</image>
This is the XSL part.
<xsl:template match="image">
<img>
<xsl:attribute name="src"><xsl:value-of select="image-clear1/@src"/></xsl:attribute>
<xsl:attribute name="width"><xsl:value-of select="image-clear1/@width"/></xsl:attribute>
<xsl:attribute name="height"><xsl:value-of select="image-clear1/@height"/></xsl:attribute>
</img>
</xsl:template>
Any suggestions.
Rajan