Creating conditional comments with XSLT ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:29:18Zhttp://stackoverflow.com/feeds/question/814249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814249/creating-conditional-comments-with-xslt4Creating conditional comments with XSLT ?Wazdesign2009-05-02T05:57:10Z2009-05-16T08:08:45Z
<p>I want to create <a href="http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx" rel="nofollow">conditional comments</a> in XSLT.</p>
<p>But when I use this:</p>
<pre><code><!-- [If IE7] [endif] -->
</code></pre>
<p>in an <code><xsl:comment></code>, XSLT removes it from the output when it is rendered.</p>
<p>Is there any way to create conditional comments in XSLT?</p>
http://stackoverflow.com/questions/814249/creating-conditional-comments-with-xslt/814265#8142654Answer by Cerebrus for Creating conditional comments with XSLT ?Cerebrus2009-05-02T06:11:50Z2009-05-02T06:11:50Z<p>Simply use an <code><xsl:comment></code> tag and include your comment within the tag.</p>
<p>For example:</p>
<pre><code><xsl:if test="@id = '1'">
<xsl:comment>
<![CDATA[[if IE]><![endif]]]>
</xsl:comment>
</xsl:if>
</code></pre>
<p><a href="http://www.positioniseverything.net/articles/multiIE.html" rel="nofollow">Taming Your Multiple IE Standalones</a> is a great article on this subject.</p>