Hi all,
I have a one problem in xsl.
I dont want to do further execution, when a condition reaches. I need to come out from the style sheet. Could you any one help me out on this.
Thanks,
Veera
Hi all,
I have a one problem in xsl.
I dont want to do further execution, when a condition reaches. I need to come out from the style sheet. Could you any one help me out on this.
Thanks,
Veera
XSLT is written in a very functional style, and in this style there is no equivalent of a exit/break statement.
<xsl:for-each select="nodes">
<xsl:if test="some condition">
body of loop...
</xsl:if>
</xsl:for-each>
Take a look at this article - http://articles.techrepublic.com.com/5100-10878_11-5085807.html
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.