RE: The tag %@include file=”.........” % > helps in in...
the thing is it can be used for both static and dynamic.the problem here is the included page can be html or jsp anything but it compiles only once when the jsp is translated to servlet.if the contents of the included jsp page changes the include tag dont show tht changes when it includes tht file in the current jsp page.this is not the case of including jsp page.its with all dynamic pages.
RE: The tag %@include file=”.........” % > helps in including the ______ file in the JSP page (Multiple choice)
The answer should be C) Static.
Because this include directive happens at TRANSLATION TIME (i.e. The very first time your jsp page is called the code gets written to a servlet). So later on when we make change to that including file wont have any effect on the JSP Page...
And the another way of include is the standard action which appears as same function as above but which included the file at RUNTIME...