Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Java Console

Status
Not open for further replies.

raha

Programmer
Jan 9, 2001
11
US
I installed netscape 6 recomended version on my machine.
But when I try to bring up Java Console from the Tasks/Tools
menu, it did not come up. Does anybody know if I need to do a full installation to bring up Java Console or if this is a
known problem?

The problem we are having is we have a .html file which has the following java script

document.write(&quot;<APPLET ARCHIVE=Validation.jar NAME=Validation CODE='com/sterling/gen/icpvep/Validation.class'&quot;+
&quot; WIDTH=1 HEIGHT=1 MAYSCRIPT CODEBASE=file:///E|/COOLGEN/GEN/>&quot;);
document.write(&quot;<PARAM NAME=currency VALUE=&quot;+CURRENCY+&quot;>&quot;);
document.write(&quot;<PARAM NAME=thousandseparator VALUE=&quot;+THOUSANDSEPARATOR+&quot;>&quot;);
document.write(&quot;<PARAM NAME=decimal VALUE=&quot;+DECIMAL+&quot;>&quot;);
document.write(&quot;<PARAM NAME=dateseparator VALUE=&quot;+DATESEPARATOR+&quot;>&quot;);
document.write(&quot;<PARAM NAME=timeseparator VALUE=&quot;+TIMESEPARATOR+&quot;>&quot;);
document.write(&quot;<PARAM NAME=dateorder VALUE=&quot;+DATEORDER+&quot;>&quot;);
document.write(&quot;<PARAM NAME=messagefile VALUE=&quot;+MESSAGEFILE+&quot;>&quot;);
document.write(&quot;<\/APPLET>&quot;);

and this script worked for netscape 4.7 but doesn't work for netscape6. Please let us know if you have any suggestions!

Thankyou
 
Hi,
I also get this problem, am i am getting hot about this.However, i let you see my script and see maybe we can help each other.

My problem is, in netscape 4 this works but not in netscape 6. Can some one help too...thank...


//i have a layer named testlayer
//this is to check for netscape4 to netscape 6

if (document.layers||document.getElementById)
{
var lyr = document.testlayer.document;
lyr.open();
lyr.write(&quot;write some code&quot;);
lyr.close();
}
//this is to check for ie
else
{
testlayer.innerHTML =&quot;write some code&quot;;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top