basic applet
i am new to applet programming. I copied a sample applet (Clock2.class)to my jsp location. It was successful.
Then I changed the code, cleaned the cache and reloaded the page. Now, it gives two different error messages as follows:
When I have the applet tag
<applet codebase="." code="Clock2.class" width=460 height=160>
</applet>
In the browser:java.land.ClassNotFoundException:Clock2.class
In the status bar:
Opening http://localhost:myport/mypath/Clock2/class.class
<applet codebase="." code="Clock2" width=460 height=160>
</applet>
In the browser: java.land.ClassNotFoundException:Clock2
In the status bar:
Opening http://localhost:myport/mypath/Clock2.class
I have been struggling with this couple days. Any help is greatly appreciated

