You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Anand Prasad <ap...@calient.net> on 2000/12/01 02:41:47 UTC

Netscapes crashes everytime when view pages from Jakarta

I dont know whether this is issue related with Jakarta or Netscape.

It always crashes with bus error.  Is the value I am getting from server
side is very simple...

Have some seen this.  

I have a JSP page which Jakarta process and sends me a string

Any Help or suggestions will be appreciated.

On the client side, I just write this to a Layer

This is the Sample Code
<html>
<head>
<script language="JavaScript">
var name = "<% Object.getName(); %>";
if(document.layers){
	document['HistoryList'].document.open();
	document['HistoryList'].document.writeln(name);
	document[HistoryList'].document.close();
}
else{
        document.all['HistoryList'].innerHTML = name;
}
</script>
</head>

<body>
<SPAN ID="HistoryList" class='historystyle" </SPAN>
</body>
</html>