Image link in XML

2

What I need:

  • Use an image contained in a link published on the internet.
  • Apply a URL located inside my bank.
  • <xsl:for-each select="/Msg/Props/">
    <table>
    <tr>
    <td align="center" valign="top" width="200">
    <a style="text-decoration: none; width:100%;">
    	<xsl:attribute name="href">
    		<xsl:value-of select="Prop[@prop_name = 'url']/@val" />
    	</xsl:attribute> 
    	<img border="0" style="height: 120px; width: 150px;">
    		<xsl:attribute name="src">
               <xsl:value-of select="Prop[@prop_name = 'foto']/@val" />
    <!--####--> Preciso substibuir a FOTO pela minha URL de imagem publicada na net####  -->
    		</xsl:attribute>
    	</img>
    			
    </a>
    </td>
    </tr>
    </table>
    </xsl:for-each>

    Is there any way to do this?

        
    asked by anonymous 27.05.2015 / 16:49

    0 answers