How to access an exact XML node and not the value of it in an XSL stylesheet

DX-GENERATION.

New Member
Ok, So in my XML file I have an image node:\[code\]<img alt="Green arrow" src="http://stackoverflow.com/questions/10623717/green-arrow-up-icone-5011-48.png"/>\[/code\]Now I want to display this in my webpage using XSL:If I use \[code\]<xsl:value-of select = "//img"/>\[/code\](there is only one image), I don't get anything because the "value of" img is nothing as it has no nodes in it. How do I make XSL just take that node as it is and just display it on the webpage?
 
Back
Top