Question : xslt help

I am trying to figure out xslt and it isn't going too well.
I found a tutorial at w3schools.com, but can't get past the first sample.
If I go to this link: http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog
and put this in the left pane:
<All_Results>
  <Result>
    <id>1</id>
  </Result>
</All_Results>

And this in the right:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xmp><xsl:copy-of select="*"/></xmp>
</xsl:template>
</xsl:stylesheet>


I get nothing.  I was expecting to get everything.  Why is this?

Answer : xslt help

Because the namespace is not correct

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL Transform">

should be

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

But you will "get" everything, but not "see" everything
W3schools shows the result in a browser, it only shows the html working

I recommend that you download an IDE for learning and testing,
that way you see exactly what you get
here is a good one
www.oxygenxml.com
Random Solutions  
 
programming4us programming4us