Hi
> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of
> Karl J. Stubsjoen
> Sent: Wednesday, April 30, 2003 5:29 PM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re: Transform XML
>
>
> I'v not seen the squigly brackets before... is this an
> alternative syntax to something else?
>
> > <FLD name="{@name}"/>
>
> Karl
>
>
> ALSO (off topic a bit):
> But does anyone have experience with MSXML and using the
> IXSLProcessor to output to a DomDocument?
>
> (seems a bit on topic - since I'm using xslt to transform xml
> to xml, but need to return an xmlDomDocument)
Just point the IXSLProcessor.output to a DOMDocument
Something like:
...
Dim proc as IXSLProcessor
Dim res as DOMDocument
...
Proc.output = res
Proc.transform
Hope that this helps you
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|