index.jsp
--------------
<%@ page import="com.MyClass" %>
<%@include file="included1.jsp" %>
included1.jsp
----------------
<% MyClass myclass = new MyClass(); %>
Exception:
MyClass cannot be resolved to a type
Why ?? I am reading "SCWCD Exam Study Kit". It says that :
"The page directive applies to the entire translation
unit and not just to the page in which it is declared."
Please help. Thanks.