<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"
xmlns="http://www.w3.org/TR/REC-html40" result-ns="">
<xsl:template match="/">
<html>
<head>
<title>Book Nook Search Results</title>
<link rel='stylesheet' type='text/css' href='http://localhost:8080/BookNook/BookNook.css' />
<style type="text/css">
body {
scrollbar-face-color: green; scrollbar-highlight-color: #ffffff; scrollbar-shadow-color: #ffffff; scrollbar-3dlight-color: #ffffff; scrollbar-arrow-color: #ffffff; scrollbar-track-color: blue; scrollbar-darkshadow-color: #ffffff
}
</style>
<script type="text/javascript" language="JavaScript">
defaultStatus = 'Search Results' ;
</script>
</head>
<body background='http://localhost:8080/BookNook/tn_license_MO.jpg' bgproperties='fixed'>
<div align='center'>
<img src="http://localhost:8080/BookNook/BookNookLogo-large.gif" />
<br /><br /></div>
<div class='title'>The following book(s) match your search criteria:
</div>
<div class='center'>
<br />
<br />
<table border='1' cellpadding='2' cellspacing='2' bordercolor='rgb(0, 164, 101)' bgcolor='rgb(240, 240, 240)'>
<tr class="Headings">
<td align="center" ><b>Book Title</b>
</td>
<td align="center" ><b>Author(s)</b>
</td>
<td align="center" ><b>ISBN #</b>
</td>
<td align="center" ><b>Price per copy</b>
</td>
<td align="center" ><b>Available now?</b>
</td>
<td align="center" ><b>Purchase here</b>
</td>
<td align="center" ><b>Book Reviews</b>
</td>
</tr>
<xsl:apply-templates select="//Product" />
</table>
</div>
<p />
<div align="center">
<input type="button" value="Start Over" onClick="location.href='http://localhost:8080/BookNook/BookNookProductSearch.html' " />
<form method="get" action="http://localhost:8080/BookNook/servlet/ShoppingCart">
<input type="submit" value="View Cart" />
<input type="hidden" name="CartOperation" value="display" />
</form>
</div>
</body>
</html>
</xsl:template>
<xsl:template match="Product">
<tr>
<td><xsl:value-of select="Title" /></td>
<td><xsl:value-of select="Author" /></td>
<td><xsl:value-of select="ISBN" /></td>
<td><xsl:value-of select="Cost" /></td>
<td align="center" ><xsl:value-of select="InStock" /></td>
<td align="center" >
<form method="get" action="http://localhost:8080/BookNook/servlet/ShoppingCart">
<input type="text" name="quantity" value="1" size="1" maxlength='3' />
<input type="hidden" name="CartOperation" value="add" />
<input type="submit" value="Add to cart" />
<input type="hidden" name="ISBN">
<xsl:attribute name="value">
<xsl:value-of select="ISBN" />
</xsl:attribute>
</input>
</form>
</td>
<td align="center">
<form method="get" action="http://localhost:8080/BookNook/servlet/SeeReview">
<input type="submit" value="Read Reviews" />
<input type="hidden" name="ISBN">
</input>
</form>
<form method="get" action="http://localhost:8080/BookNook/servlet/AddReview">
<input type="submit" value="Add Your Review" />
<input type="hidden" name="ISBN">
</input>
</form>
</td>
</tr>
</xsl:template>
</xsl:stylesheet>
This simply displays as text, no background, no images, no buttons, no nothin'. Thanks for any advice!

UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; H010818; T312461)



This has