|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: xsl:element will not create an output element, in
> I've already tried both lc and uc for xhtml:ul - I just tested > 'xhtml:ul' vs 'xhtml:UL', and the output is the same, regardless; > still no elements produced. > > Any other suggestions? > > Yes. You seem to be pretty sure that you do not have any elements in your output, even though you don't mention whether you tried running it differently as suggested by David. To be certain that you really do not see any element output and that your system for some reason disallows you to create elements, try the following stylesheet in your browser, you should see a large caption saying "Hello world". Name the styesheet "embedded.xslt" (if not, you will see only the XSLT itself). <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="embedded.xslt"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html"/> <xsl:template match="/"> <html> <head><title>hello world</title></head> <body> <h1>Hello world!</h1> </body> </html> </xsl:template> </xsl:stylesheet> If you do not see a large "Hello world", then you have a very obscure problem with your browser. Note that you should try it with Firefox, because with IE you run the risk that the content type is incorrectly recognized and IE then will try to download the XSLT file. Cheers, -- Abel Braaksma
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|







