InterviewSolution
Saved Bookmarks
| 1. |
How to redirect a request from a servlet to another servlet? |
|
Answer» Page redirection is generally used when a document moves to a new location and we need to send the client to this new location or may be because of load balancing, or for simple randomization.The simplest way of redirecting a request to another page is using method sendRedirect() of response object. |
|