tag <applet> with a file .class created by netbeans
i ve created a simple JApplet with netbeans, so i can view a JSP that loads this applet. But if a try to make a HTML file (without netbeans) like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<applet code="NewJApplet.class" ></applet>
</body>
</html>
does 'nt work!!! "applet NewJApplet notinited"
The NewJApplet.class is in the same folder of the HTML file, of course.

