• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Dynamic parameter values for applet

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi forum,

I coded a applet program , and able to execute well while giving the parameters values on my html file.
but how can pass those values dynamically .

for example here the sample code
</html>
<Applet CODE="xxx.class" Archive="xxx.jar" width = 1000 height =800 >
<Param name = "abc" value = "999999">
<param name = "xyz" value= "888888">
</Applet>
</html>

in the above how can i pass the values for param name abc , xyz dynamically instead of setting same values(99999,888888) every time.
because for my application it needs to change those values so how can it work. i just using html file only no jsp.
please assist me

Thanking you in advance.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you have no dynamic parts on the server (like JSP), then where are the dynamics in those numbers coming from?
 
v kishore
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
is it possible to get parameters from the url ?
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What URL are you asking about?
 
reply
    Bookmark Topic Watch Topic
  • New Topic