I had tried to pass string from servlet to jsp .But it never forwarded to jsp .The following are the files
servlet file:
String login = "asd";
request.setAttribute("myname",login);
request.getRequestDispatcher("GetCategory.jsp").forward(request, response);
jsp file:
<% String name = (String)request.getAttribute("myname");
System.out.println(name);%>