Is there any way to submit a page dynamically using
Struts tags?
Right now I'm having two pages A & B.
Page A calls an action class, which will call Page B on success
Page A -> action class1 -> Page B
But I would like to introduce an interim page A1 (between A & B), which will show some text message to the user.
1. Page A calls an action class on submit, which will redirect to Page A1 (on success)
2. Then Page A1 calls another action class dynamically (no user submission), which will re-direct to Page B.
User Submitting Page A -> action class1 -> Auto Submission of Page A1 -> action class2 -> Page B
Introducing Page A1 to show some text message to user, when the application processing at the back end.
But I don't know how to submit Page A1 dynamically. Tried to submit using response.sendRedirect, RequestDispatcher &
java script submission. Is there any one help me on this?
Thanks in advance.
[ April 25, 2003: Message edited by: Bala Rajamani ]