I have the same problem of other, I read a some tutorial too and...
public class UserData {
String username;
String email;
int age;
public void setUsername( String value )
{...
I put in UserData.java and compiled and put in the same directory
\WEB-INF\classes, and when
call
I find this and compiled and put in the same directory \WEB-INF\classes, and
when call
SaveName.jsp
<jsp:useBean id="user" class="UserData" scope="session"/><jsp:setProperty
name="user" property="*"/>
receive this error:
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 1 in the jsp file: /SaveName.jsp
Generated servlet error:
C:\Program Files\Apache Tomcat 4.0\work\localhost\_\SaveName$jsp.java:56:
Class org.apache.jsp.UserData not found.
UserData user = null;
^
Why?
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>