This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

xml data in an editable text field


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]