JSP request implicit Object
JSP request Object is the instance of javax.servlet.http.HttpServletRequest. This object is used to get the HTTP header information, data entered on previous JSP page etc. Example: login.jsp <html> <head> <title>login</title> </head> <body> <form action="welcome.jsp"> <input type="text" name="userName" /> <input type="submit" value="login"/> </form> </body> </html><html> <head> <title>login</title> </head> <body> <form action="welcome.jsp"> <input type="text" name="userName" /> <input … Read more