Hello Members,
I have a java file (myapplet.java), the myapplet.class file and the myapplet.html file. I would like to run this applet on my webpage. I use IE 7.0
The myapplet.html and myapplet.class files are both in the public_html folder of my UNIX account,which happens to be on the school server.
Let's say my webpage is:
This is the index.html webpage. On this webpage, I have a link for my applet, whose URL is:
www.mycollege.edu/~myself/myapplet.html
The following is my myapplet.html file:
<APPLET
CODE = myapplet.class
WIDTH = 1000
HEIGHT = 800
>
</APPLET>
When I click on the link that is supposed to run the applet, I get the "ClassDefNotFound Exception."
I would appreciate any help in fixing this problem.
Thanks a lot!!