post varibles

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • oll3i
    Contributor
    • Mar 2007
    • 679

    post varibles

    Hello,

    How do I access hidden type variables in java?

    Thank You,
    kasia
  • Nepomuk
    Recognized Expert Specialist
    • Aug 2007
    • 3111

    #2
    What exactly do you mean with "hidden type variables"? Do you mean private variables? And from where are you trying to access them? Please give a code example to make things clearer.

    Comment

    • chaarmann
      Recognized Expert Contributor
      • Nov 2007
      • 785

      #3
      Are you parsing HTML-requests and want to get the value of a variable created by HTML: <input type="hidden" name="myName" value="myValue" ...> ?
      Then use request.getPara meter("myName") ;

      Comment

      Working...