It ok, fixed it. I needed to use a RequestDispatcher to forward, rather than
redirecting the user, e.g.:

RequestDispatcher rd = req.getRequestDispatcher("myForm.jsp");
rd.forward();

As opposed to:
res.sendredirect();

sam

Reply via email to