xml data in an editable text field

Subject: xml data in an editable text field
From: Tim Brady <tbrady@xxxxxxxxxxxxxxxxx>
Date: Tue, 28 Nov 2000 13:57:09 -0800
I am trying to put XML data in an editable text field.  Here is a sample
of the XML data:
<Contact>
<combinedName>Bob Smith</combinedName>
<company>Acme</company>
<title>President</title>
</Contact>


Here is some code from my XSL file:
<xsl:template match="/">

<xsl:for-each select="Contact">

<xsl:value-of select="combinedName"/>

</xsl:for-each>


What I want to be able to do is to put the combinedName into an editable
text field like this:
<input type="text" name="combinedName" value="Bob Smith"/>

How do I write that in my XSL file?

Thanks,
Tim


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread