Re: [xsl] XSL and Namespaces

Subject: Re: [xsl] XSL and Namespaces
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 Mar 2001 16:44:40 GMT
            I want to do this:
			<xsl:attribute name="sql:field">
				<xsl:value-of select="@type" />
			</xsl:attribute>


probably it would be easier just to do
   sql:field="{@type}"
as an attribute on your literal result element, but in either case
before you can use th esql: prefix in your stylesheet, you need
to declare it as a namespace prefix (to the correct namespace)
so add xmlns:sql="whatever namespace you want" to your xsl:stylesheet
element.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread