- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between include action and include directive in JSP?
include action lets you insert files into the page being generated. The syntax looks like this −
<jsp:include page = "relative URL" flush = "true" />
Unlike the include directive, which inserts the file at the time the JSP page is translated into a servlet, this action inserts the file at the time the page is requested.
- Related Articles
- What is a include directive in JSP?
- What is the difference between #include and #include “filename”?
- Please share a running example of include directive in JSP
- Difference between #include and #include "filename" in C/C++?
- I am facing problem in using include directive tag in jsp. Please share a working example.
- Difference between 'include' and 'extend' in Ruby
- What is a page directive in JSP?
- What is a taglib directive in JSP?
- What is the purpose of taglib directive in JSP?
- What is the function of action in JSP?
- What is the use of Action in JSP?
- PHP include Statement
- What is the difference between Func delegate and Action delegate in C#?
- Include keyboard text in HTML
- What is the use of jsp plugin action element?

Advertisements