include a JSP file in another with cases
问题 How can i include a JSP page in another JSP with the IF structure: Can i use this part of code in a JSP file: <% UtilisateurAction useraction = new UtilisateurAction(); String statut = useraction.Connect(); //System.out.println(statut); if(statut=="ADMIN"){ %> <%@ include file="menu.jsp"%> <%} else {if(statut=="USER"){%> <%@ include file="menu.jsp"%> <%}} %> 回答1: If all you want is the possibility to use <c:if> you must have a scoped variable. Attributes of current request, session of