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,324
  • 14
  • 60
  • 96

1 Answers1

0

Use it without session:

var min="${timLim}";
SMA
  • 35,277
  • 7
  • 46
  • 71