Access Session Variable using JSTL


Use this in case of direct variable value:
like, request.getSession.setAttribute("name", value);
can be accssed by using:



Use this in case of variable usage:
like, String nameVarible = "name";
request.getSession.setAttribute(nameVariable, value);




can also use like,