Help on xsl choose |
|
| Comments (3) |
|
Priya9 in Auckland, New Zealand 49 months ago |
Hi there I am having a problem using xsl choose statement. I have the code as follows. <!--<xsl:value-of select="New_Product" />-->
The XSL doesn't seem to parse when I include the xsl choose statement. If I exclude that I get all the results. What I need to achieve is to highlight the new products whose value I am getting from the database. When I just use the <xsl:value-of select="New_Product" /> I get the value as 1 or 0. Can anyone help me identify what it is I am doing wrong? Regards
|
|
xml_looser in Wiesbaden, Germany 49 months ago |
Three way for explain the problem I prefer the with <xsl:template match="New_Product"> <?xml version="1.0"?>
<xsl:template match="/">
<xsl:template match="New_Product"> <xsl:choose>
<xsl:template match="root">
<xsl:choose>
|
|
Priya9 in Auckland, New Zealand 49 months ago |
xml_looser in Wiesbaden, Germany said: Three way for explain the problem Hi xml_looser Thanks for your reply. I have solved the problem like this. <xsl:choose>
Regards
|
» Sign in or create an account to comment on this topic.
