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

Re:

Subject: Re:
From: Conor Ryan <cryan@xxxxxxx>
Date: Thu, 30 Nov 2000 10:19:52 +0000
Re:
Hi Monica,

This works.

xml file
<?xml version = "1.0"?>
<?xml-stylesheet href="account.xsl" type="text/xsl" ?>
<page>
<accounts>
<account_list>
  anil
  anita
</account_list>
</accounts>
</page>

xsl stylesheet:

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">

<xsl:template match="page">
<html><head><title>list</title></head>
<body>
<table><tr><td>accounts</td></tr></table>
<hr color="666699" align="left" width="415"></hr>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="accounts">
<xsl:value-of select = "account_list"/>
<hr color="666699" align="left" width="415"></hr>
<table>
<tr>
<td bgcolor="silver">
<a href="changepassword">Change Password</a>
</td>
</tr>
</table>
</xsl:template>

</xsl:stylesheet>


---------
Conor Ryan,
XML Workshop Ltd,
10 Greenmount Industrial Estate, Harolds Cross, Dublin 12, IRELAND.
Email: cryan@xxxxxxx
Phone: +353 1 4547811; Fax: +353 1 4731626
Web: http://www.xmlw.ie/


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


Current Thread

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
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.