|
-
Jul 28th, 2003, 12:05 PM
#1
Thread Starter
Member
Session servlet and vectors
Hi people, from the following servlet code:
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
HttpSession session = request.getSession(true);
session.setAttribute("name", request.getParameter("name"));
It stores the name in the session. Question is how do i store the name in a vector? Examples or references would be helpful Thanks alot!
-
Jul 29th, 2003, 02:02 AM
#2
What do you mean store? Persistent data is best stored as session var or in some database. How would you persist the vector?
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|