Frank Martin
Frank Martin

Reputation: 3451

How to use <img src=""> in XSLT (SharePoint)

I am using the following code to display image using XSLT in Sharepoint. It is working fine.

<xsl:value-of select="@Image">

But this approach doesn't allow me to define width and height of image so I tried to use it like this but it didn't work.

<img src="{@Image}" width="100" height="100">

How to make it work?

Upvotes: 3

Views: 9143

Answers (2)

Hash
Hash

Reputation: 8050

Try something like this, & add more details to your question.

<xsl:variable name="img">
      <xsl:value-of select="@Image" />
</xsl:variable>

then;

<img src="$Image" width="100" height="100" />

More on XHTML - http://xhtml.com/en/xhtml/reference/img/

Upvotes: 1

lquitadamo
lquitadamo

Reputation: 653

Your xsl isn't well-formed. You can use

<img src="{@Image}" width="100" height="100" />

This is well-formed xhtml version.

Upvotes: 2

Related Questions