91-9990449935 0120-4256464 |
6) session implicit object
Example of session implicit objectindex.html<html> <body> <form action="welcome.jsp"> <input type="text" name="uname"> <input type="submit" value="go"><br/> </form> </body> </html> welcome.jsp<html> <body> <% String name=request.getParameter("uname"); out.print("Welcome "+name); session.setAttribute("user",name); <a href="second.jsp">second jsp page</a> %> </body> </html> second.jsp<html> <body> <% String name=(String)session.getAttribute("user"); out.print("Hello "+name); %> </body> </html> OutputOther topics in JSP implicit ObjectsExample of request implicit object Example of Response implicit Object Example of config implicit object Example of application implicit object Example of pageContext implicit object Example of page implicit object Example of exception implicit object |