This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XSL and Namespaces



            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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]