1 | <applet .... > can be followed by |
2 | <param name=attributename1 value="attributevalue1" > ....... |
3 | <param name=attributenameN value="attributevalueN" > |
4 | </applet> |
5 | The Java program accesses this information by |
6 | String attribute; |
7 | attribute = getParamter("attributename1"); |
8 |
if( attribute == null )
|
9 | Typically this processing would be in init() method of Applet |