I have a List View to which I'm providing an xslt link. However I get the error in the subject. I had it all set up with a table, so due to the errors, I've pared it down to what you see here.
Here is the text from the xsl sheet:
I've changed till my eyes are blurry........anyone care to share an extra couple of eyes on this?<?xml version="1.0" encoding="utf-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><xsl:output method="xml" indent="yes"/><xsl:template match="/"><xsl:for-each select="dsQueryResponse/Rows/Row"<xsl:call-template name="row"/></xsl:for-each>
</xsl:template><xsl:template name="row"><img><xsl:attribute name="src"> https://mydomain/sites/bi/Ad-Hoc/Style%20Library/images/blankSpacer-35.gif</xsl:attribute></img><xsl:value-of select="@Name" /> <xsl:value-of select="@Description" /><br /></xsl:template></xsl:stylesheet>