how to give a links in xsl

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kaleeswaran
    New Member
    • Mar 2007
    • 132

    #1

    how to give a links in xsl

    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
  • jkmyoung
    Recognized Expert Top Contributor
    • Mar 2006
    • 2057

    #2
    You're missing what you want here:

    "i need to display the ???? in the respective text box"

    Where is the code for your textboxes? Assuming you can use javascript.

    Comment

    Working...