Hi - this is my another problem wyth xslt transformation
I'm using XSLT below
and I'm getting result:Code:<xsl:output method="xml" version="1.0" encoding="utf-8" omit-xml-declaration="no"/> <xsl:template match="/"> <xsl:element name="ofe:ofe" namespace="urn:ofe"> <xsl:attribute name="wersja"> <xsl:text>1.0</xsl:text> </xsl:attribute> </xsl:element>
which it's ok but order of parameters is not correctCode:<?xml version="1.0"?> <ofe:ofe wersja="1.0" xmlns:ofe="urn:ofe"/>
it should be
Please help - what I have to do to change it?Code:<?xml version="1.0"?> <ofe:ofe xmlns:ofe="urn:ofe" wersja="1.0" />
Big thanx in advance.




Reply With Quote