Hi
I'm using a
jsp page with some inputfields. These fields map to fields in a java-bean. What I want to do is have the user enter text in some inputfields, map it to my javabean, and then do a post to a
servlet. In the servlet I want to get my bean from the session, and print out its fields (That should have been set by the jsp-page)
My code looks something like this:
JSP:
Servlet (doPost):
What happens is that I can get the Customer object from the session (in my servlet), but the name and number fields are null.
Any suggestions on what I'm doing wrong here?
[ October 28, 2008: Message edited by: Jim Petersson ]
[ October 28, 2008: Message edited by: Jim Petersson ]