adspace


How we can include the result of another page in jsp?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

i need the source code for opening a word document in java

2307