Hi, I have a problem creating an html file for the applet. First, my java files are inside a PACKAGE(named client). I created an html file as shown below: <html> <body> <applet code="Client.class" codebase="." width=300 height=500> </applet> </body> </html> That is saved at the Project's Folder(the place where the java packages are stored). The problem is the class cannot be found. What should I do???
Glenn Castro<br />Sun Certified Web Component Developer
Brian Pipa
Ranch Hand
Joined: Sep 29, 2003
Posts: 299
posted
0
If the package is Client, then you wouldn't use "<applet code="Client.class" codebase="." width=300 height=500>" you would use <applet code="Client.YourClassName.class" codebase="." width=300 height=500> brian