Questions tagged as 'jstl'

0
answers

Popular select option based on choice of another select option

Hello, I'm popping a select option using useBean . <jsp:useBean id=“catDAO” class=“contas.categoria.CategoriaDAO”/> <c:forEach var=“categoria” items="${categoriaDAO.lista}"> <option value="${categoria.idcategor...
asked by 06.09.2018 / 16:52
0
answers

How to convert from scriptlets to JSTL?

How do I convert this code into scriptlets for JSTL to make it more readable? JSTL default if did not work Code: <% String emailProfessor = request.getParameter("emailProfessor"); String senhaProfessor = request.getParameter("senhaProfessor...
asked by 12.05.2018 / 21:57
2
answers

getParameter returning the same value

I have a table where you have the column ID - NAME - ACTION 1 - USU1 - SEE 2 - USU2 - SEE 3 - USU3 - SEE In the JSP I am saving the id inside an input hidden. <input type="hidden" value="${operador.id }" name="idOperador"/> I...
asked by 25.07.2017 / 04:33
1
answer

Problem with enconding: JSTL fmt

I'm using fmt to do internationalization of texts on a page. It turns out that when using accents, the text gets strange characters. I tried to change: <fmt:requestEncoding value="UTF-8" /> but there was no difference. Is there any ex...
asked by 05.09.2016 / 15:58