xsl and ado namespaces

wxdqz

New Member
Hi can someone explain why the following will not work in IE5. I am usingXSL and not XSLT(not an option as this is a production environment)I have an xsl spreadsheet as follows(code extracts)to transform an ado2.5saved recordset to html.Header:<?xml version="1.0" ?><xsl:stylesheetxmlns:xsl="http://www.w3.org/TR/WD-xsl";xmlns:html="http://www.w3.org/TR/REC-html40";result-ns=""language="JScript"xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"xmlns:rs="urn:schemas-microsoft-com:rowset"xmlns:z="#RowsetSchema">content:<xsl:template match="/" ><xsl:for-each select="//s:Schema/s:ElementType/s:AttributeType">do something and transform rowsThis works perfectly well when the "xmlns:s" namespace is omittedhowever when I include as above the select does not match. Has anybody anyideas as this is doing my head in?Thanks in advanceSean
 
Back
Top