Java Applets Home | Cheat Sheet |

Java Applets are basically program applications designed to run in web browsers. Supposedly platform independant, applets are a versatile way of running programs on web pages. As with JavaScripts, there are also many java applets out there, from chat programs to login and password applets. Note: login and password applets are not a safe way of password protecting your site and are not advisable. (I dont see why any individual would want to).

Here is an example of an applet that can take parameters. Click here to see it.

<HTML>
<HEAD>
<TITLE>This is the Title</TITLE>
</HEAD>
<BODY>
<APPLET code="ParamTest.class" height="50" width="250">
<PARAM NAME="font" VALUE="Dialog">
<PARAM NAME="size" VALUE="16">
<PARAM NAME="string" VALUE="Applet Example Text">
</APPLET>
</BODY>
</HTML>

I have another example of an applet, however it is not the best example as it does not show all parameters. I have also been informed that it decided not to work on certain occasions, however I know it work on both ie5 and nn4 on both win98 and NT. Click here to see the example applet.

A Good Source for Java Applets: http://javaboutique.internet.com/

!! Under Construction !!

Prev | Top | Next |

Any Questions or Comments? E-Mail me!

rhduncan@hotmail.com
http://www.htmlguide.findhere.com Copyright © 1999 Robert Duncan