I am trying the following code...
<xsl:template match="test"> <p> This is <xsl:value-of select="test-Name"/> from <xsl:value-of select="test-city"/> </p> </html> </xsl:template> </xsl:transform>
I am expecting the output to be...
This is XYZ (Value in Name) from TEXAS ( value in city)..
however i am getting ...
This is from.
Let me know how to fix the issue?