removing data from session
- by sarah
Hi All,
i am using the following code to remove a attribute from session
List l=(List) sess.getAttribute("allUserslist");
for(int ii=0;ii l1=(List) sess.getAttribute("allUserslist");
System.out.println("final size"+l1.size());
}
te final size after removing is still one as before,where i am doing wrong ?
}