Saturday, November 21, 2009

OAF : Session

How to Handle the Session into OAF?
-------------------------------------------

String myName="Neelmani";
pageContext.putSessionValue("Name",myName);//Set The Value to Session

String myName=(String)pageContext.getSessionValue("Name"); //get The Value from Session