Apache Struts Question:
What is the difference between ForwardAction and IncludeAction?

Answer:
The difference is that you need to use the IncludeAction only if the action is going to be included by another action or jsp. Use ForwardAction to forward a request to another resource in your application, such as a Servlet that already does business logic processing or even another JSP page.
Previous Question | Next Question |
What is IncludeAction? | What is LookupDispatchAction? |