Hello, I connect the file ... <jsp: include page = "cookie" /> ... there is some kind of action happening and you need to get back the value, how to do it?)

    1 answer 1

    Probably so:

    <c:set var="name" scope="request" value="val" /> 

    Their requestScope should split up, and accept it like this:

     <c:out value="${requestScope.name}" /> 

    Well, or all too, only through scriptlets.

     <%request.setAttribute("naem", "val");%> 

    and

     <%=request.getAttribute("name")%>