I am having trouble with XSL headers.
When I have
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="uri:xsl">
<xsl:template match="/">
everything works fine except I can't seem to declare variables or use functions (ie. substring = errors occur)
And With
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="<xsl:template match="/">
I dont get errors with variables or functions but no data is ever displayed.
Does anyone know what the main difference is and what I should be using.
Thanks!
-Ryan
When I have
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="uri:xsl">
<xsl:template match="/">
everything works fine except I can't seem to declare variables or use functions (ie. substring = errors occur)
And With
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="<xsl:template match="/">
I dont get errors with variables or functions but no data is ever displayed.
Does anyone know what the main difference is and what I should be using.
Thanks!
-Ryan