Hi,
Can a variable declared in one jsp file be used in another, if imported? Example:
// index.jsp
<%
int count = 40;
%>
<%@include file='go.jsp'%><%
// go.jsp
<%
count += 10;
%>
is count visible to go.jsp? I am guessing this is not good design anyway (expecting global variables to be around for you from another page), just wondering if this can work while I prototype.
Thanks