Hi,
I have created a component where i am previewing sitemap through xsl but with sitemap nodes request header values also showing up .Pls suggest how to remove request header .Pls the xsl and xml code:
XSL-----------------------------------------------------
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="Result">
<ul>
<xsl:for-each select="leftnavigation/label">
<li>
<a href="@link">
<xsl:value-of select="@name"/>
</a>
<xsl:for-each select="label">
<ul>
<li>
<a href="@link">
<xsl:value-of select="@name"/>
</a>
</li>
</ul>
</xsl:for-each>
</li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
xml ------------------------------
<ul>
<li>
<a href="/iw-preview/52616e646f6d4956667b8c027e405d78388b43c495b991c604095e6d4ba07af8e0242f4659271803007b0d40fa95812fa3e26223c13d9c3eb49592bef642dcfd/hxoib3if/myLearning/error.page?" target="">error</a>
</li>
<li>
<a href="/iw-preview/52616e646f6d4956667b8c027e405d78388b43c495b991c604095e6d4ba07af8e0242f4659271803007b0d40fa95812fa3e26223c13d9c3eb49592bef642dcfd/hxoib3if/myLearning/home.page?" target="">home</a>
<ul>
<li>
<a href="/iw-preview/52616e646f6d4956667b8c027e405d78388b43c495b991c604095e6d4ba07af8e0242f4659271803007b0d40fa95812fa3e26223c13d9c3eb49592bef642dcfd/hxoib3if/myLearning/Information.page?" target="">Information</a>
</li>
</ul>
</li>
<li title="product page">
<a href="/iw-preview/52616e646f6d4956667b8c027e405d78388b43c495b991c604095e6d4ba07af8e0242f4659271803007b0d40fa95812fa3e26223c13d9c3eb49592bef642dcfd/hxoib3if/myLearning/product.page?" target="">product</a>
<ul>
<li>
<a href="/iw-preview/52616e646f6d4956667b8c027e405d78388b43c495b991c604095e6d4ba07af8e0242f4659271803007b0d40fa95812fa3e26223c13d9c3eb49592bef642dcfd/hxoib3if/myLearning/productdescribtion.page?" target="">productdescribption</a>
</li>
</ul>
</li>
</ul>