View Single Post
Old 05-03-2004, 05:28 PM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,503
sde is on a distinguished road
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?
__________________
Mike
sde is offline   Reply With Quote