yyayl
Jul 28th, 2003, 12:05 PM
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!
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!