Hi,
In the statement :
<jsp:useBean id="user" class="UserData" scope="session"/>
I think you should specify the exact package i.e : class="UserData.UserData"
Please note that it is not advised to have package name like the class name.
Furthermore, and by convention, the package name is usually written in
lower-case .
Regards,
Arnaud
> My group is working on a vendor type based website for a software
> engineering engineering course. We have little to no experience in
[quoted text clipped - 39 lines]
>
> boolean doneheading = false;
dbconn=DriverManager.getConnection("jdbc:mysql://localhost/group10","group10
","password");
> Statement statement = dbconn.createStatement();
>
[quoted text clipped - 69 lines]
> We're clueless on where to begin how to debug this. Again, we have no
> experience with programming in jsp or java. Thanks in advanced.