How to get values from a row that are in a jstl list and send into their respective input text on the same page jsp?

0

Good afternoon guys! I'm using "Jsp, servlets, and jstl". I have a list where I have a link called change, when I click I get the values of that row from the list and send it to the same jsp where it has a form with the fields to be made the change, so far I'm only able to make the values appear in the url page, but I can not display them in jsp fields.

I am sending the fields this way

<td> <a href="view/v_configura_turma.jsp?&id_turma=${listat.turma_id}&nome_turma="${listat.tur_nome}></a>  </td>   
                    
asked by anonymous 13.12.2018 / 20:51

1 answer

0

Good afternoon, I was not able to do it directly, so I simply picked up the id of the selected line and made a new query in the database where I retrieved the values and entered the values in the input text to make the changes.

My jsp in the request of the list line was this way.

<td> <a href="#">#                                    
20.12.2018 / 16:46