jsp:forward action tag
jsp:forward action tag is used for controlling the page flow. It forwards the request from a JSP to the other resource. Another resource can be servlet, jsp or html file. Syntax: <jsp:forward page=”URL of other resource”/> Example: welcome.jsp <html> <head> <title>forward action example</title> </head> <body> <jsp:forward page="home.jsp"/> </body> </html><html> <head> <title>forward action example</title> </head> <body> … Read more