-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,612
  • 10
  • 26
  • 42

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
  • 733
  • 3
  • 15