Directive Include and Action Include how both are working
in JSP, what is the difference between both?In which
suituation we have to choose these elements?
Answer Posted / maruti.alapati
Directive Include:
1.Included the resources at translation time.
2.It supports only static resources.
3.If any changes are done in the JSP that are not freqently
changed.
Action Include:
1.Included the resources at request processing time.
2.It supports static & dynamic resources.
3.If any changes are done in the JSP that are change
freqently.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Explain the features are in servlet 3?
What is servlet lazy loading?
What is api in servlet?
What is MIME Type?
What is pure servlet?
What are the different session tracking techniques?
Explain the difference between servletconfig and servletcontext in servlet?
What exception should be thrown when servlet is not properly initialized?
How do we call one servlet from another servlet?
What is the inter-servlet communication?
How the servlet is loaded?
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?
How can you create a session in servlet?
What is servlet name in web xml?
Explain the servlet filter.