Hi,
Here i am pasting
the snippet...
Can i
use jsp:include like this....
Please tell whether i am missing
something.....
Here my
requirement is...I want to include GetFullNamesServlet if fullnames is
null....
<%
Vector fullnames=(Vector)application.getAttribute("fullnames");
if(fullnames==null){
%>
<jsp:include page="/servlet/GetFullNamesServlet" flush="true"/>
<%
}
%>
Vector fullnames=(Vector)application.getAttribute("fullnames");
if(fullnames==null){
%>
<jsp:include page="/servlet/GetFullNamesServlet" flush="true"/>
<%
}
%>
raj
