Can anybody help me ??? thanks
JSP code:
...
<%
request.setAttribute("name", "Husam Haddad");
%>
...//forwarding to
servlet using the form HTML tag
Servlet code:
{
...
String name = request.getAttribute("name");
System.out.println("name is " + name);
...
}
the output is : name is
null why is
null ?