XSL transofrmation questions

Subject: XSL transofrmation questions
From: Carlos Araya <elrond@xxxxxxxxxxxxxxxx>
Date: Sun, 26 Mar 2000 16:19:15 -0800 (PST)
Hello, 

I'm having the following problem generating a XSL stylesheet to use with
Internet Explorer. The XSL stylesheet is as follows:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>


<xsl:template match="/">
	<html>
	<head>
		<title>Bibliography Listing</title>
	</head>	
	<body>

		<h2>Bibliography listing</h2>

	<table>

		<tr>
			<td><b>Title</b></td>
			<td><b>AUthor(s)</b></td>
		</tr>

		<tr>		
			<td><xsl:value-of select="TITLE"></td>
			<td><xsl:for-each select="AUTHOR">
				<xsl:value-of select=".">
			</xsl:for-each></td>
		</tr>
	</table>

	</body>
	</html>
</xsl:template>
</xsl:stylesheet>

	Internet Explorer insists that I can't use xsl:apply-stylesheet,
but doesn't tell me where is the error or how to correct it.

	A related question. Can you incorporate CSS stylesheets to an XSL
transformed document? if so how do you do it?

Thanks in advance for any help
Carlos

--
Carlos E. Araya
WebCT Project Coordinator - New Media Specialist
Alquist Center for Instrucctional Development
San Jose State University
1 Washington Square
San Jose, Ca 95192-0026

email	: araya@xxxxxxxx (prefered)		| Phone (408) 924 2859
	  elrond@xxxxxxxxxxxxxxxx		| Pager (408) 308 1793
Web	: http://www.sjsu.edu/depts/alquist/	| Fax   (408) 924 2437
	  http://valinor.sjsu.edu/~elrond/	

finger elrond@xxxxxxxxxxxxxxxx for PGP key
-- 
Solid stone is just sand and water, baby/ Sand and water, and a million
years gone by. -- Beth Nielsen Chapman -- Sand and Water
                                              
"Be conservative in what you do, be liberal in what you accept from
others," --John B. Postel


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


Current Thread