Skip to Content
0
Jul 27, 2010 at 03:40 PM

transformation

68 Views

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?