<solution>
Close your script tag by putting a </script> after it.
</solution>
<explanation>
IE thinks the whole page after the script opening is part of your script.
Interesting to see a situation where Mozilla does better reading dodgy html
than IE!
If you feed Mozilla the page (as you pasted in your message below) it will
automatically assume the </script> tag for you - which you can verify by
looking at the page source through mozilla. IE doesnt make this assumption
for you.
</explanation>
<btw>
Ive also noticed IE doesnt understand the xhtml / inside same tag closure -
<script src="dsdsd.js"/> either - you have to explicitly use a seperate
</script> rather than the more concise xml format. :-(
(hehe - spare a thought for me  - I use DOM manipulation with xerces instead
of JSP to render my xhtml. Xerces serialises out script tags with a <sdsds/>
style if they have no body content so all my script tags have to explicitly
put an empty comment inside - <script src="ssdsdafads"><!----></script> so
xerces will keep it as a seperate start and end tag and IE will be happy!)
</btw>
<btw>
Whats with the totally inconsistent use of ' and "?
Your raw html is $#$ing ugly dude! (I suppose it looks ok in the jsp source
though?)
(Could be worse though. Have you seen what FrontPage output looks like!
rofl)
</btw>

-----Original Message-----
From: kiuma [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 10, 2002 22:35
To: Struts Users Mailing List
Subject: Re: help, I'm desperate!!!!


plus
 a </html> at the end.

Sorry (broken cut & paste)

P.s. I'm using JBoss3.2b

kiuma wrote:

> This is the page and it is perfectly blank under IE
>
> <html>
> <head>
>    <base
> href="http://192.168.100.3:8080/webappointments/secure/userlist.jsp";>
>    <title>Lista utenti</title></head>
>    <link rel="stylesheet"  href="../css/common.css" TYPE="text/css"/>
>    <link rel="stylesheet"  href="../css/anagr.css" TYPE="text/css"/>
>    <SCRIPT language='JavaScript' src='../scripts/formscripts.txt'>
> </head>
>
> <BODY class='centerframe'>
>
> <form name="listedUserForm" method="POST"
> action="/webappointments/listedUser.do">
>
>
>
> <table cellpadding="0">
> <tbody>
>    <tr>
>        <td>
>            <b>Cerca per cognome:</b>&nbsp;
>            <input type="submit" name="action" value="Cerca">
>            <input type="text" name="userToFind" size="35" value="">
>        </td>
>    </tr>
>
> </tbody>
> </table>
>
> <table class='list' cellpadding="10" cellspacing='0'>
> <tbody>
>
>
>        <tr class='odd'>
>            <td class='odd' valign='top' align='center'>
>                <br/>
>            </td>
>        </tr>
>
> </tbody>
> </table>
> <p>
>
> <input type="submit" name="action" value="Aggiungi">
> </p>
> </form>
>
> </body>
>
>
>
>
>
>
>
>
> kiuma wrote:
>
>> http://192.168.100.3:8080/webappointments/main.do
>>
>> generates:
>>
>>
>>
>> <html>
>> <head>
>>   <base
>> href="http://192.168.100.3:8080/webappointments/secure/userlist.jsp";
>> >       <title>Lista utenti</title></head>    <link rel="stylesheet"
>> href="../css/common.css" TYPE="text/css"/>
>>   <link rel="stylesheet"  href="../css/anagr.css" TYPE="text/css"/>
>>   <script language='JavaScript'
>> src='../scripts/formscripts.txt'></script>
>> </head>
>>
>> <body class='centerframe'>
>>
>> <form name="listedUserForm" method="POST"
>> action="/webappointments/listedUser.do">
>>
>>
>>
>> <table cellpadding="0">
>> <tbody>
>>   <tr>
>>       <td>                      <b>Cerca per cognome:</b>&nbsp;
>>           <input type="submit" name="action" value="Cerca">
>>           <input type="text" name="userToFind" size="35"
>> value="a">                       </td>
>>   </tr>
>>
>>   </tbody>
>> </table>
>>
>> <table class='list' cellpadding="10" cellspacing='0'>
>> <tbody>
>>
>>
>>
>> The problem is that I'm not able to view it with ather browsers than
>> Mozilla 1.0
>>
>> plz help !!!!!!!!!!!!
>>
>>
>>
>>
>>
>>
>> --
>> To unsubscribe, e-mail:
>> <mailto:[EMAIL PROTECTED]>
>> For additional commands, e-mail:
>> <mailto:[EMAIL PROTECTED]>
>>
>> .
>>
>
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
> .
>



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


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

Reply via email to