• 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

problem with getParameter from html page

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello, i have this code:
in html file:

<APPLET archive="Awb.jar" code="Awb.Awb" width=850 height=700>
<param name="p1" value="CN" />
<param name="p2" value="1234" />
</APPLET>

and this code in my applet class:
public Awb() {
super();
init();
String awbprefix = getParameter("p1");
String awbnumber = getParameter("p2");
if (awbprefix.compareTo("none")!=0 && awbnumber.compareTo("none")!=0)
{
airwaybill_frame.awbObj.setPrefix(awbprefix);
airwaybill_frame.awbObj.setAwbnumber(awbnumber);
airwaybill_frame.RequestData("request_awb","awb");
}
}

the Awb() method is the constructor of the applet
i can't get the parameters and getting the error unknown source...
i can't figure out what is the problem

10x ahead
 
Ranch Hand
Posts: 1143
1
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Netanel,
I believe the Applets forum is probably more appropriate for your question.

In any case, from the code you have provided, it looks like you may not exactly understand how applets work. Allow me to suggest the Writing Applets trail in the Java tutorial.

Good Luck,
Avi.
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the Applets forum.
 
Sometimes you feel like a nut. Sometimes you feel like a tiny ad.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic