[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Creating HTML tags through XSL.

  • From: THOMAS PASSIN <tpassin@i...>
  • To: <prasadm@c...>, <xml-dev@i...>
  • Date: Fri, 28 Jan 2000 20:25:23 -0500

creating html form in xsl
<prasadm@c...> wrote

> Hi folks,
>
> Asking for help once again. Has anyone been successful in creating HTML
> tags through XSL. What really my problem is we have an XML document of
> say 100 records. Now I want to split them up into 10 layers/div's
containing
> 10 rows
> in each page. I want to create something like this.
>
> <xsl:template match="ROW">
>     &lt; /TABLE &gt;
>     &lt; /FORM &gt;
> <xsl:apply-templates/>
> </xsl:template>
>
> The above XSL should generate for me the tags
> </TABLE></FORM> as part of the html doc being created. But instead
> these tags appear on the browser. Is there anyway to force these tags
> to be part of the html doc. or Is it not possible at all?
>
If you use the entities &lt; and so on, you will get those CHARACTERS (not
markup) in the output.  But they will be excaped characters, not markup, as
you have seen.
If you want to output a table element, you need to output  complete
elements, possibly like this:

<xsl:template match="ROW">
<table><form><xsl:apply-templates/></form</table>
</xsl:template>

There are other possiblities, but this is the easiest.

Tom Passin


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ or CD-ROM/ISBN 981-02-3594-1
Unsubscribe by posting to majordom@i... the message
unsubscribe xml-dev  (or)
unsubscribe xml-dev your-subscribed-email@your-subscribed-address

Please note: New list subscriptions now closed in preparation for transfer to OASIS.



PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.