How Ii do can add new Parameter in a Applet Component?
Printable View
How Ii do can add new Parameter in a Applet Component?
What exactly do u want?
If u want to specify a parameter to the applet from HTML page, u will need to give 'param' tag in the applet e.g.
<applet ....>
<param name='...' value='....'>
<param name='...' value='....'>
....
</applet>
And if u need to access the specified parameters inside the applet, u will need to use 'getParameter()' method. Specify the name of the parameter, to the method and it will return u the value.
I hope this answers ur query.
- UnicMan
http://members.tripod.com/unicman