Renders in Mozilla not in IE 6.0.2

admin

Administrator
Staff member
Hi all :) ,
I am creating a web application (customer finder) that communicates and queries a database server. I have an xhtml page and a xsl stylesheet to capture the results.
My question is can anyone explain why mozilla is rendering the data properly on my xhtml page and IE is not. When I click on view source in IE I can see my query, and valid results of the query.

I know it is good practice to declare a doctype in xhtml, but whenever I add the doctype to the top of my xhtml page the query results do not show up in the source view of the page. I added the meta tag in the head section of the html page which worked in the page that sets off my query to the server??? Thanks for any input

<?xml version="1.0" encoding="UTF-8"?>
<html><head>
<title>Customer Finder Results</title>
<link rel="stylesheet" href=http://www.webdeveloper.com/forum/archive/index.php/"../styles/fontandcolor.css" type="text/css" ></link>
<sias-insert-java-objects /> <!-- a call to a xsl function -->
<script type="text/javascript" src="../scripts/feature_info.js" ></script>
<script type="text/javascript" src="../scripts/search.js" ></script>
<script type="text/javascript" src="../scripts/objects.js" ></script>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8" ></meta>
</head>
<body>
<table width="100%" border="0" xmlns:swldy="http://www.gesmallworld.com/gml_extension" xmlns:ogcgml="http://www.opengis.org/gml#" >
<tr><td colspan="2" width="100%" class="title_bar">
<b><sias-insert-feature-count ></sias-insert-feature-count></b> </td>
</tr><tr><td>
<table width="100%" border="0" cellpadding="4" cellspacing="0" >
<tr><td /><td />
<sias-insert-features-header />
</tr>
<sias-insert-features />
</table> </td></tr>
<tr><td><br /><b> <sias-insert-features-footer /></b></td>
</tr>
</table>
<sias-insert-batch-form />
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="main.xsl" />
<xsl:include href="wmt_exception.xsl" />
<xsl:variable name="SIAS_LAYOUT" select="document('../html/cf_content.html')"/>
<xsl:template match="sias-insert-batch-form">
<!-- Add in batch form which is an invisible form used to communicate with the server -->
<xsl:call-template name="BatchForm">
<xsl:with-param name="STYLESHEET">cf_content.xsl</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template match="sias-insert-features-header">
<xsl:call-template name="InsertFeaturesHeader"/>
</xsl:template>
<xsl:template match="sias-insert-feature-count">
<xsl:call-template name="InsertFeatureCount"/>
</xsl:template>
<xsl:template match="sias-insert-features">
<xsl:call-template name="InsertFeatures"/>
</xsl:template>
<xsl:template match="sias-insert-features-footer">
<xsl:call-template name="InsertFeaturesFooter"/>
</xsl:template>
<xsl:template match="@*|*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
 
Back
Top