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"
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