yes, i do that.
but lets look at this
thispage.jsp
Code:
String pagetTitle = "This Page";
<%@ include file="head.jsp" %>
now the rest of the page
head.jsp
Code:
<html>
<title><%=pageTitle%></title>
<body>
u see what i mean? i want my vars declared before head.jsp to be recognized in head.jsp... or vars i declare in head.jsp to be recognized in thispage.jsp below where i included the head.
is it possible?