diff between jsp include directive and jsp action include?
Answer Posted / jaspal
Syntax for JSP include directive is:
<%@ include file="relative file path" %>
Syntax for JSP action include is:
<jsp:include file="relative file path"
flush="true | false" >
JSP include directive is used to include static files within
a JSP page. Files are include at translation phase.
JSP action include is used to include dynamic files within a
JSP page. Files are include excution time. As request, a
file is refreshed.
Is This Answer Correct ? | 30 Yes | 8 No |
Post New Answer View All Answers
Why does the option tag render selected=selected instead of just selected?
What are transaction attributes?
What class is used to create Server side object ?
How database connectivity in XML is achieved?
Why are some of the class and element names counter-intuitive?
What are the oops concept?
How to implement RMI in Java?
Which containers use a border layout as their default layout?
what is a non-repeatable read?
What are callback interfaces?
Define the remote object implementation?
How many times may an objects finalize() method be invoked by the garbage collector?
Do I need to import javlang package any time? Why ?
What is the diffrence between a local-tx-datasource and a xa-datasource? Can you use transactions in both?
What is the relationship between the canvas class and the graphics class?