jsp

a jsp file is underWEB-INF/jsp/commonfolder.i am trying to includeit as a header for another jsp like<%@ include file="./jsp/common/head.jsp %>i am facing problems....can any body help me out
[225 byte] By [java@srinua] at [2007-11-27 0:58:24]
# 1
use this instead:<jsp:include page="/WEB-INF/jsp/common/head.jsp" />hth
java_2006a at 2007-7-11 23:32:17 > top of Java-index,Java Essentials,New To Java...
# 2
thank u buti am getting different errors...asjsp:include is dynamic includei am setting the dept,username obtained from session in one jsp in the header jsp...............it is saying cnt find dept...
java@srinua at 2007-7-11 23:32:18 > top of Java-index,Java Essentials,New To Java...
# 3
add this <%@ page session=true %>to your jsp
java_2006a at 2007-7-11 23:32:18 > top of Java-index,Java Essentials,New To Java...
# 4
where should that be placed in my jsp
java@srinua at 2007-7-11 23:32:18 > top of Java-index,Java Essentials,New To Java...
# 5

on the top of your jsp.

here an example :

<%@ page session=true%>

<%!

int counter;

public long getLastModified(HttpServletRequest req)

{

String path = req.getRealPath("test.xml");

return new File(path).lastModified();

}

%>

Count: <%= counter++ %>

java_2006a at 2007-7-11 23:32:18 > top of Java-index,Java Essentials,New To Java...