|
-
September 23rd, 1999, 02:35 AM
#1
Java
How Ii do can add new Parameter in a Applet Component?
-
September 23rd, 1999, 08:32 AM
#2
Re: Java
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|