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]

RE: URGENT : Substitue value of xsl:variable into output !!!


You need brackets around the $inVar in an attribute of a literal result element, otherwise it is assumed to be a literal, not an expression.

			<input name="{$inVar}" value="{Qty}" type="number"/>	<br/>

You need to use the <xsl:value-of> instructions in text, otherwise it is just assumed to be free text.

ref="http://10.10.10.94:7001/servlet?mySvc=myApp&amp;myP1=<xsl:value-of select="ItemID"/>&amp;myP2=<xsl:value-of select="$inVar"/>"></go>


 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]