Very new
Java Beans student here with probably a very basic question. I've got a problem with passing changed bean values from a
JSP page that displays a FORM to another JSP PAGE that simply displays the data. Here are the steps:
1. I get a list of job records from a database. The data for each record is saved in a bean called JobBean.
2. I select one record that is then displayed in a FORM in a JSP page:
3. I change some data in some of the fields.
4. I click submit - but the old data is sent to the employerEditJobResult.jsp JSP PAGE not the new data.
Obviously, I'm missing something. I thought that typing new values in the form would mean that those values would be passed onto the page, but not so. What am I missing?
Please be kind.
John