• 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

4 fields that makes one set

 
Ranch Hand
Posts: 151
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have a situation where I have 4 fields that makes one set in the JSP forms. And the number of sets depends on the user. How will I insert these data into DB. how will I get the those data from, form to java class via actionform.

Thank you in advance
 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Mahi Lohi wrote:Hi all,

I have a situation where I have 4 fields that makes one set in the JSP forms. And the number of sets depends on the user. How will I insert these data into DB. how will I get the those data from, form to java class via actionform.

Thank you in advance




Set your object on request and get it at Action.

For Example:
At JSP:

At Action:

 
Mahesh Lohi
Ranch Hand
Posts: 151
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Set your object on request and get it at Action

I am sorry, but I was unable to understand it.


 
reply
    Bookmark Topic Watch Topic
  • New Topic