Ibrahim Mustafa said: > simple question: > How can one use tdom to xform an XML file using XSL file ? I parsed the set domxml [dom parse $xml] set domxsl [dom parse $xsl] set domhtml [$domxml xslt $domxsl] set html [$domhtml asHTML -htmlEntities] $domxml delete $domxsl delete $domhtml delete
Is all it takes. I showed the HTML example, but ofcourse you can also get plain XML back by using "asXML" instead of "asHTML". -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
