I am populating a list of string from jsp to an html <textarea>
. e.g.
out.println("<textarea name='word_suggest' rows='10' id='word_suggest'>");
while(it.hasNext()){
out.println(it.next());
}
out.println("</textarea>");
I want the user to edit the textarea and read back the values to jsp (e.g. create another list of strings) so that I can work around with the new list. Can I do this without using the <form>
and <post>
action e.g work around within the same page?