What I need:
<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?