I want to run this code on tomcat 5, on port 8080 in Internet Explorer,
but something strange happens:

When I run the following code

::: CODE :::

<?xml version="1.0" encoding="ISO-8859-1" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"; version="1.2">

<jsp:directive.page language="java" 
                    contentType="text/html ; charset=ISO-8859-1"
                    pageEncoding="ISO-8859-1" />

        <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en"
lang="en">
                <head>
                        <title>Test2</title>
                </head>
                <body>
                        <div>
                                Test2
                        </div>
                </body>

        </html>
        
</jsp:root>

::: END CODE :::

You will expect a nice XHTML page from it. In Netscape and Mozilla it is
exactly this, but when running in IE6, I get a XML-tree instead of a
page, which I expected.

Also when I look at the properties, I note a strange value, the Type
value of the page contains "JavaServer Page", which shouldn't be filled
at all. So how can I change this, so I get IE6 working?

Thanks in advance,
Sjoerd van Leent



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to