RE: question from a newbie...please help

Subject: RE: question from a newbie...please help
From: Davide Bedin <davide@xxxxxxxx>
Date: Thu, 17 Sep 1998 17:31:03 +0200
Thank you for yor reply. by the way I'm not able to get any result with
the Microsoft XSL ActiveX, in fact this XSL appear to me very different
from the one I see on the Microsoft web site, are there different way to
write XSL?
Do you know how to convert this XSL in a XSL Microsoft compatible
format.

Thank you very much,
Davide Bedin

> The following is the most simple way to solve your problem. 
> There might be some more sophisticated solutions, but this 
> one works fine:
> 
> <xsl:stylesheet>
> 
> <xsl:template match="/">
> <HTML> 
>   <HEAD>
>   </HEAD>
>   <BODY>
>   <xsl:process-children/>
>   </BODY>
> </HTML>
> </xsl:template>
> 
> <xsl:template match="department|subdepartment|type|subtype">
>   <ul>
>   <xsl:process-children/>
>   </ul>
> </xsl:template>
> 
> <xsl:template match="code|product">
>   <li><xsl:process-children/></li>
> </xsl:template>
> 
> </xsl:stylesheet>
> 
> Eran Pe'er
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


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


Current Thread