<jsp:include> tag problem
If i have this tag in a jsp page :
<jsp:include page="before.jsp" flush ="true" ></jsp:include>
then i use a bean declared in before.jsp for example :
<jsp:getProperty name="userData" property="name"/>
idea signal as red error this reference...but Tomcat execute correctly...
Please sign in to leave a comment.
try this:
<jsp:include page="before.jsp" flush ="true" />
take out the closing </jsp:include>