Subject: Creating HTML FORM with DataChannel parser.
From: Olivier MATHIEU <olivier_mathieu@xxxxxxxxx>
Date: Wed, 5 May 1999 07:42:50 -0700 (PDT)
|
I am using Data Channel XMl parser and the XMLtoHTML sample program.
I would like to create a HTML page with a FORM tag
I want to set its VALUE attribute with a string I get in the XML file but I can't do it:
The xml file is typically:
<CLIENT>
<NAME>olivier</NAME>
</CLIENT>
the xsl file is :
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xmlns:xslt="http://www.w3.org/TR/WD-xslt">
<xsl:template match="/">
<HTML><BODY>
<xslt:apply-templates />
</BODY></HTML>
</xsl:template>
<xslt:template match="Client">
<FORM>
<INPUT VALUE="{NAME}">
<INPUT/>
</FORM>
</xslt:template>
</xsl:stylesheet>
All I get is a form with "{NAME}" instead of "olivier".
If someone can help....
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|