I've been using this pattern for some time with excellent results:
<%
    if (user == null) {
%>           
     <%@ include file="/jsp/loginpanel.jsp" %>
<%
} else {
%>   
     <%@ include file="/jsp/logoutpanel.jsp" %>
<%
}
%>   
I'm curious how this affects performance. In once sense, the "assembled" 
jsp is being changed each visit. So is it rebuilt each time? What gets 
cached?

-- 
--------------------------
http://www.phonewebcam.com
[EMAIL PROTECTED]



_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to