0

I want to get values from HttpSession object, using EL.

    <body>
    HttpSession session = request.getSession(true);
    session.setAttribute("timLim", 50);
    <script>
    var min="${session.timLim}";
    alert(min); //Getting no output
    </script>
    </body>

How to assign value of min back to timLim using EL session.timLim ?

Malwinder Singh
  • 6,644
  • 14
  • 65
  • 103

1 Answers1

0

Use it without session:

var min="${timLim}";
SMA
  • 36,381
  • 8
  • 49
  • 73