raklos
raklos

Reputation: 28555

display an image pulled from sharepoint using xslt

How can I display an image pulled from sharepoint using xslt?

the xml produces a tag and its value is:

<img alt="" border="0" src="/SiteCollectionImages/Blue%20hills.jpg ....etc

but the output is the text above and not the image itself.

the xslt is just:

Rollup-Image: <xsl:value-of select="Rollup-Image" />

Upvotes: 0

Views: 2720

Answers (1)

Jason
Jason

Reputation: 15931

i think this should do the trick

<xsl:value-of select="Rollup-Image" disable-output-escaping="yes" />

Upvotes: 3

Related Questions