As you said I have changed the picture name accordingly and saved in a common folder. To combine url in XSL I have written the following code:
<xsl:template match="udt:Photo">
<xsl:for-each select="dnnGridItem">
<xsl:value-of select="udt:LastName" />
<xsl:value-of select="udt:FirstName" />
</xsl:for-each>
<img border="0" alt="delete">
<xsl:attribute name="src">
<xsl:text>file://folder/subfolder</xsl:text>
<xsl:value-of select="file://folder/subfolder/?LastNme={LastName}, FirstName={FirstName}.jpg" />
<xsl:text>.jpg</xsl:text>
</xsl:attribute>
</img>
</xsl:template>
But there is no progress with my output. Could you suggest me the changes that I need to apply in the code.
Thanks