Next in thread → Next in month →

Re: [xml-dev] Turning Off the Output Stream or Just a Return Value from a Templ ate

From
Thomas B. Passin <>
To
Ronald Kent Gibson <>,
Date
2003-04-03T14:31:03Z
ID
<000c01c2f9ed$a795c150$6401a8c0@tbp1>
Thread
Re: [xml-dev] Turning Off the Output Stream or Just a Return Value from a Templ ate
[Ronald Kent Gibson]
> I just want to return a value from a template without outputting the
return
> value at all.
>
> The code below works but outputs true when the result is true.
>
> How can I either stop this or is there a better way to catch a return
value?
>
>

The "xsl:copy-of" is outputting the value of the variable, and doing nothing
else for you.

> <xsl:variable
> name="search_result">true</xsl:variable>
>
> <xsl:copy-of
> select="$search_result"/>

Cheers,

Tom P
Next in thread → Next in month →