-2

How to pass a list from jsp to servlet? I want to add the dianomic field in my JSP and insert it through a servlet.

Pika Supports Ukraine
  • 3,394
  • 9
  • 24
  • 41

1 Answers1

0

Use session.setAttribute(String name, Object value) within the JSP, then retrieve it using session.getAttribute(String name) in the servlet.

Pierce Griffiths
  • 698
  • 3
  • 15