<jsp:include> elements allow you to include dynamic files and static, and the results of the two include files are different. If the file is just a static file, then this includes simply adding the contents of the containing file to the JSP file, and if the file is dynamic, the included file is also executed by the JSP compiler (which is similar to the ASP)
You can't judge whether a file is dynamic or static from the filename, for example, aspcn.asp may only contain some information, but it doesn't need to be executed. <jsp:include> can process both files at the same time, so you don't need to include them and decide whether the file is dynamic or static.
If the inclusion file is dynamic, you can also pass the parameter name and parameter values with <jsp:param>.
Property
Page= "{relativeurl | <%= expression%>}"
The parameter is a relative path, or an expression that represents a relative path.
Flush= "true"
Here you must use Flush= "true" and you cannot use false values. The default value is False
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.