I am experiencing a little problem reading parameters from an html page to an applet.
my code (necesssary for question):
on html page:
<PARAM NAME = "name" VALUE = "Nicholus">
in applet (init):
String strName = getParameter("name");
The applet just decides to look at me instead of getting the name value.. a few google search shows im not the only one, except I haddn't yet found the solution, so I decided to post it here in case it was already resolved.