• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

How to Update multiple rows of a table in jsp

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

In my jsp I have multiple rows in a table.
each row is having 3 columns(Lable,Combo Box, TextBox),
Lable and combobox values comes from database.

My issue/dought is :
I need to change the combobox value and text box value in multiple rows and when i press the submit button i have to update all the datas into database.
If any of you provide me the code snippet it would helpful for me.

Thanks in advance
 
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

knowmore know wrote:If any of you provide me the code snippet it would helpful for me.


That's not how things work here. You write the code, we help you with it.

Lable and combobox values comes from database.


Please read HtmlHasNoComboBox. Using correct terminology is important for good communication.

I need to change the combobox value and text box value in multiple rows


Change how? And as a result of what? You'll need to TellTheDetails.

and when i press the submit button i have to update all the datas into database.


That's something you'd do in a servlet with JDBC or and ORM tool.
reply
    Bookmark Topic Watch Topic
  • New Topic