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!
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.