Re: Help! Can't Read from Bean Instance from JSP

2000-01-28 Thread Hans Bergsten
Joseph Seah wrote: > > Hi... > > Have been trying to get my JSP to read info from my bean instancebut > can't seem to do so. Need some advice. That's because you save the bean in the session using the name "ccenquiry.loginuser" but you try to get it in the JSP page using the name "loginUser"

Help! Can't Read from Bean Instance from JSP

2000-01-27 Thread Joseph Seah
Hi... Have been trying to get my JSP to read info from my bean instancebut can't seem to do so. Need some advice. Below are my rough codes. I have a form(Parameters are: userId and passwd) that submits to my LoginServlet. import java.io.*; import java.util.*; import javax.servlet.*; impor