aspose file tools
The moose likes JSP and the fly likes How to send Modified Row Property back to Servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "How to send Modified Row Property back to Servlet" Watch "How to send Modified Row Property back to Servlet" New topic
Author

How to send Modified Row Property back to Servlet

Ron Rea
Greenhorn

Joined: Jul 03, 2001
Posts: 23
I have created at table, using a <Nested:Iterate> tag, in which the user can modify a Terminate Date on each row and click a link to send the modified date back to the servlet.
The trouble I am having is that when the user changes the Terminate Date and hits the link going back to the servlet, the Terminate Date returned is the original, not the modified one. Any ideas as to what I am missing?
Thanks!
Ken Pelletier
Ranch Hand

Joined: Aug 01, 2002
Posts: 54
You need to POST the form back to the server. If you use a simple link, it'll just use GET and the form data that was changed by the user won't be sent back.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to send Modified Row Property back to Servlet
 
Similar Threads
how to delete a row
sending back a URL
Dynamically insert a row in an HTML table
deleting a row from jtable
Updating DB from JSP