my
applets work fine in netscape and appletviewer
but when i try to use internet explorer, it doesn't show up.
on the bottom, it says "load: class ClassName not found"
and my ie does have the latest
java installed. i can view other java applets. i've even reinstalled it.
even my hello world doesn't work:
html:
<HTML>
<HEAD>
<TITLE>A Simple Program</TITLE>
</HEAD>
<BODY>
Here is the output of my program:
<APPLET CODE="HelloWorld.class" WIDTH=150 HEIGHT=25>
</APPLET>
</BODY>
</HTML>
code:
import java.applet.*;
import java.awt.*;
/**
* The HelloWorld class implements an applet that
* simply displays "Hello World!".
*/
public class HelloWorld extends Applet {
public void paint(Graphics g) {
// Display "Hello World!"
g.drawString("Hello world!", 50, 25);
}
}
can someone plz help me?? i'm new at this.
thank u very very much