Good afternoon. Faced such a moment. I have two servlets and 1 jsp page. From one servlet I transfer List with the data. On the jsp page, I pull out the data I need using jstl. It would seem that everything would be great if I did a servlet that would row them up and everything was on fire. But as it turned out. I can not pull them out. I tried to pull them using request.getParametr and request.getAttribute. Therefore, to you, dear formachane, 2 questions appeared. 1. Is it possible to transfer a list from jsp to servlet? 2. If not, how can I get the data I need?
I attach the page code.
<tr> <td>ID карты</td> <td><input type="text" name="id_card" value="${card.id_card}" disabled></td> </tr> <tr> <td>Старые номера</td> <td><input type="text" name="old_card" value="<c:out value="${card.old_card}"/>" disabled></td> </tr> At attempt to pull out these values always returns NULL. Thank you in advance!