I am new to JSP. I have a jsp page where a parameter is passed to this jsp page with http post. I can see the parameter in firebug as you can see in the picture.
 
But in my page when I try to print the token variable the variable is always null. I print the variable as follows:
     <%
        String token = request.getParameter("token");
     %>
What am I doing wrong? How can I get the token parameter?
 
     
     
     
     
     
     
     
     
    