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 from that list line and send to the same jsp where there is a form with the fields to be able to make the change, so far I’m only able to make the values appear in the page url, but I can’t display them in jsp fields.
I’m 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>
And getting on the other jsp this way
<div>
<input type="text" name="id_turma" id="id_turma" readonly="true" class="form-control" placeholder="Registro da turma" required="" value="${param.turma_id}"/>
</div>
</br>
<div>
<input type= "text" name="nome_turma" id="tur_nome" class="form-control" placeholder="Nome da turma" required="" value="${param.tur_nome}" />
</div>
is and the URL that is coming on the other page
http://localhost:43183/Chamada_online/view/v_configura_turma.jsp? &id_turma=1&nome_turma=TESTE5
Thanks already!! I’m still learning how to use stackoverflow if my question is poorly formatted I will edit ready :)