Thanks for the reply so where does that fit into my XSL on my for-each and if , Am i right in this synytax?
<xsl:for-each select="catalog/cd[transla
<xsl:if test="not(catalog/cd[trans
<tr bgcolor="red">
<td colspan="2">No Results Found</td>
</tr>
</xsl:if>
Main Topics
Browse All Topics





by: abelPosted on 2009-06-16 at 11:39:11ID: 24640935
I haven't looked through all your code yet, but to know whether a certain string is inside a part of a node's text, you can use the contains XPath function:
I noticed from your code that you are doing the generalization of the XSLT engines by hand. You may want to consider using a library like Sarissa, it will save you a lot of compatibility headaches with client side XSLT.