About Question com.enthuware.ets.scwcd.v5.2.133 :
Posted: Thu Oct 09, 2014 5:52 pm
One of the wrong answers is
The blue explanations says<jsp:include file="notice.html"/>
The JSP spec 5.4 lists two valid attributes to jsp:include: "page" and "flush". Perhaps the blue explanation should be changed to reflect that "file" is invalid; it could make one think it is OK. Happened to me..This causes inclusion at request time.

JavaServer PagesTM Specification
Version 2.0
Table JSP.5-4 jsp:include Atrributes
page: The URL is a relative urlSpec as in Section JSP.1.2.1. Relative paths are interpreted relative to the current JSP
page. Accepts a request-time attribute value (which must evaluate to a String that is a relative URL specification).
flush: Optional boolean attribute. If the value is true, the buffer is flushed now. The default value is false.