Re: passing array from jsp to servlet

1999-12-29 Thread David Eaves
ll be sent as an array in the request. Let me know what you find out.   David Eaves -Original Message-From: Kelvin Tee [mailto:[EMAIL PROTECTED]]Sent: Tuesday, December 28, 1999 8:48 PMTo: [EMAIL PROTECTED]Subject: passing array from jsp to servlet Is there any way of passing an ar

Re: passing array from jsp to servlet

1999-12-28 Thread Jason Lee
The only way I can think of is if you have a session and store that array in the session on the jsp side and then let the servlet pick it up. Or, I suppose you could serialize it out on the jsp side and then serialize it back in on the servlet side. But disk reads are expensive, so I'd opt for the

passing array from jsp to servlet

1999-12-28 Thread Kelvin Tee
Is there any way of passing an array from a .jsp file to a servlet?   In the .jsp file, there is a listbox with a list of options. What I intend to do is to pass the entire content of the listbox into a servlet so that it can be processed. I can iterate thru each listbox elements in a JavaSc