Put Session Value
=========================
pageContext.putSessionValue("mode", "U");
Get Session Value
=========================
String mode = (String)pageContext.getSessionValue("mode");
if (mode.equals("C"))
=========================
pageContext.putSessionValue("mode", "U");
Get Session Value
=========================
String mode = (String)pageContext.getSessionValue("mode");
if (mode.equals("C"))
No comments:
Post a Comment