jsp & useBean
hi,
my project hierarchy looks like his-
1--ProjectFolder
2-JspPage.jsp
2-WEB_INF
3classes
4BeanClass.java
in jsp file i wrote-
<jsp:useBean id="id1" class="ProjectFolder.BeanClass" scope="session"/>
but im getting the error-
"package ProjectFolder does not exists"
so i tried to write just --> class="BeanClass"
but then i get the error-
"cannot resolve symbol" , and he is pointing me to line saying-
BeanClass id1=null;
what is the problem?
thanks in advanced.

