I'm sorry for my english.
I have a parameter in my jsp
named action I get it and put it in an another parameter named also action because i need it in my servlet
<input type="hidden" name="action" value="<%request.getParameter("action"); %>" />
<input type="submit" value="Suivre" />
So when I print this: <%out.println(request.getParameter("action")); %>
. i got the value, but in the servlet the result is like this: String action ="";
String action = request.getParameter("action");
where is the problem?? thanks
Edit: as @arjuncc and @Neuron says i change it to value=<%=request.getParameter("action")%>
, it works but I have an / added in the end of String action, I will use subString for that and it WORKS, Thanks every body, specially @arjuncc and @Neuron