In message <[EMAIL PROTECTED]>, Sushil Singh writes:
> In JSP 1.0 specification, they have clearly mentioned the lise of predefined
> variables like request, response, out, session etc. We don't have to get it, it
> will be automatically available to JSP's program.

Maybe the problem is the wrong directive:

> > <%@ import="java.util.*" %>
> > <%@ session="true" %>

Shouldn't that be

<%@ page import="java.util.*" %>
<%@ page session="true" %>

as described in "JavaServer Pages Specification, v 1.1" by Sun?

Gorazd

--
Gorazd Bozic <[EMAIL PROTECTED]>
ARNES SI-CERT, Jamova 39 p.p. 7, SI-1001 Ljubljana, Slovenia
tel: +386 1 479 88 22, fax: +386 1 479 88 99

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to