How we can include the result of another page in jsp?
Answer / Ravindra Kumar Gupta
To include the result of another page in JSP, you can use the `<jsp:include>` tag or the `<jsp:forward>` tag. The difference between them is that `<jsp:include>` executes the included JSP within the same request (and response), while `<jsp:forward>` transfers control and data to another servlet or JSP, which then generates its own response.
| Is This Answer Correct ? | 0 Yes | 0 No |
List the various action tags used in jsp.
What is the <jsp:include> standard action?
How do I perform browser redirection from a jsp page?
How do I view jsp files in my browser?
How jsp is executed by web server?
What is the page directive is used to prevent a jsp page from automatically creating a session?
Are application, pageContext and object of ServletContext same or not?
Why we use jsp instead of html?
How do you comment out in jsp?
How to send data from jsp to jsp?
Why are the request.getrequestdispatcher() and context.getrequestdispatcher() used?
Can you call jsp from servlet?