I have this jsp:
<%@page session="true" %>
<%
Integer intp= new Integer(200);
Session.setAttribute("Cec",intp);
The error is:
Generated servlet error:
[javac] Since fork is true, ignoring compiler setting.
[javac] Compiling 1 source file
[javac] Since fork is true, ignoring compiler setting.
[javac] C:\Tomcat\Tomcat_1-4-24\work\Standalone\localhost\structure_
question_template_jsp.java:256: cannot resolve symbol
[javac] symbol : variable Session
[javac] location: class org.apache.jsp.structure_question_template_jsp
[javac] Session.setAttribute("Cec",intp);
[javac] ^
[javac] 1 error
Can anyone tell me what the problem is?