Javatpoint Logo

Error in session implicit object

By: shrava*** On: Thu Mar 30 17:49:09 IST 2017     Question Reputation0 Answer Reputation0 Quiz Belt Series Points0  0Blank User
Hi sir ,
I want to show you some issue on your this page example, this example is not working
The mistake in this page is
<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>
you wrote html tag here in <% %>
http://www.javatpoint.com/session-implicit-object
Up0Down