Hi,
My code is below :
Applet1.java :
-------------------------------------------------
import javax.swing.*;
import java.awt.*;
public class Applet1c extends JApplet {
public void init() {
getContentPane().add(new JLabel("Applet !"));
}
}
-------------------------------------------------
Applet1.html
-------------------------------------------------
<html><head><title>Applet1</title></head><hr>
<applet code=Applet1c width=100 height=50>
</applet>
</html>
-------------------------------------------------
No matter what I change in the Applet1.java code and I refresh the IE6 browser, it still remain the same. In addition, I type in appletviewer Applet1.java in console, nothing display. Please help, Thanks !
regards,
Larva
My code is below :
Applet1.java :
-------------------------------------------------
import javax.swing.*;
import java.awt.*;
public class Applet1c extends JApplet {
public void init() {
getContentPane().add(new JLabel("Applet !"));
}
}
-------------------------------------------------
Applet1.html
-------------------------------------------------
<html><head><title>Applet1</title></head><hr>
<applet code=Applet1c width=100 height=50>
</applet>
</html>
-------------------------------------------------
No matter what I change in the Applet1.java code and I refresh the IE6 browser, it still remain the same. In addition, I type in appletviewer Applet1.java in console, nothing display. Please help, Thanks !
regards,
Larva