hi!
i am getting first and last name from xml into xslt.now i want to display these first & last name in html in tree format.apart from that,when the user click the first name and last name in the tree menu i need to display the in the respective text box.hope you understand my problems.
this is my sample code:
<xsl:for-each select="contact Manager/contact[title='Family']">
<xsl:value-of select="firstNa me"/>
<xsl:value-of select="lastNam e"/>
<br/>
</xsl:for-each>
Thank you,
kalees
i am getting first and last name from xml into xslt.now i want to display these first & last name in html in tree format.apart from that,when the user click the first name and last name in the tree menu i need to display the in the respective text box.hope you understand my problems.
this is my sample code:
<xsl:for-each select="contact Manager/contact[title='Family']">
<xsl:value-of select="firstNa me"/>
<xsl:value-of select="lastNam e"/>
<br/>
</xsl:for-each>
Thank you,
kalees
Comment