I have a
servlet that looks up a user and sets an attribute on the request.
Next, it's forwarded to a
jsp via a requestdispatcher.
In the ensuing jsp, I get the object I set in the servlet and display various
attributes of that object. On this jsp, there are 2 forms and 2 corresponding
buttons to process this user, depending on which button is depressed.
The question is, how can I get that user forwarded to a follow-on servlet?
I've tried using a hidden variable, no luck. I tried doing
in a scriptlet, but that didn't work. I'm getting a big fat null pointer exception...which I eventually
found in the HFJSP book...
Any ideas??
Thanks,
John