[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

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

Subject: RE: How to embed xsl:value-of into html tag
From: "ciaran byrne" <ciaran.byrne@xxxxxxx>
Date: Fri, 25 Aug 2000 07:39:28 -0700
input xsl value of
Hi Joan,
	What is it that you're trying to achieve ?
You have in your XSL '<xsl:value-of select="."/>'
to be the value of 'value' yet you have 'XML Bible'
as the desired output.

Is it that you want 'XML Bible' to be the output ? If that
is the case maybe you can build up an attribute containing
value='XML Bible' e.g.

<xsl:template name="input">
	<input>
		<xsl:attribute name="value"><xsl:value-of select="'XML
Bible'"/></xsl:attribute>
		<!-- Add other attributes -->
	</input>
</xsl:template>

That would output

<input value="XML Bible"></input>

You can build up an attribute set,etc. which would simplify the process.





-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Joan Shu
Sent: Thursday, August 24, 2000 3:22 PM
To: 'XSL-List@xxxxxxxxxxxxxxxx'
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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.