I've tried to be fancy (probably my downfall !) and include some
vb scripts to give me a day of the week, which seem to work perfectly, but appears to show additional data after labels.
This is what I have:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:vbdate="urn:schemas-xmlpitstop-com:vbdate">
<xsl:include href="script.VBDayOfWeek.xsl"/>
<xsl:output version="1.0" encoding="UTF-8" omit-xml-declaration="no" method="xml" indent="yes"/>
Which as I say does return the day of the week where needed, but it's now converted the following output:
Code:
<RateGuaranteed Currency="USD">279.00</RateGuaranteed>
into:
Code:
<RateGuaranteed Currency="USD" xmlns:vbdate="urn:schemas-xmlpitstop-com:vbdate">279.00</RateGuaranteed>
Do I need to put something in the relevant templates to suppress it, or is it something within the xsl:output ?
as always thanks in advance