Re: How to embed xsl:value-of into html tag

Subject: Re: How to embed xsl:value-of into html tag
From: "Russ Holmes" <rholmes@xxxxxxxxx>
Date: Fri, 25 Aug 2000 17:11:20 +1200
XSL code;

<input type="text" name="productName" size ="25"
maxlength="30" ><xsl:attribute name="VALUE"><xsl:value-of
select="."/></xsl:attribute>
</input>

..should work..

Russ


----- Original Message -----
From: "Joan Shu" <jshu@xxxxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxx>
Sent: Friday, August 25, 2000 10:22 AM
Subject: How to embed xsl:value-of into html tag


> Hi,
>
> I can't get this working. value of the input field will be <xsl:value-of
> select=".">
> instead of the real name -- XML Bible. I guess XSLT will not transform any
> XSL statement inside
> a html tag.
>
> Any workaround will be really appreciated. Thanks,
> Joan
>
> =============xsl code=================
> <xsl:template match="productName">
>
> <input type="text" name="productName" value='&lt;xsl:value-of
> select="."/&gt;' size="25" maxlength="30" />
>
> </xsl:template>
>
> =============xml code================
> <?xml version="1.0"?>
>
> <productName> XML Bible </productName>
>
> =============output==============
> <input type="text" name="productName" value='<xsl:value-of select="."/>'
> size ="25" maxlength="30" />
>
> ==========what I want==============
> <input type="text" name="productName" value='XML Bible'  size ="25"
> maxlength="30" />
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


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


Current Thread