InterviewSolution
Saved Bookmarks
| 1. |
How to update an attribute in session in servlet? |
|
Answer» setAttribute(String name, Object value) of HTTPSession object binds an object to this session, using the name specified and can be used to update an attribute in session. |
|