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.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
If you have no dynamic parts on the server (like JSP), then where are the dynamics in those numbers coming from?