I have a jsp with value String filesrno = "testvalue". Also I have a form I am submitting on this jsp.
<form action="Sortable"id="myform" method="post">
<input type="hidden" id="no1" name="filesrno">
<input type="hidden" id="no2" name="totalcount">
</form>
where Sortable is another Servlet and values are passed to this servlet 2. I have the same value in Sortable Servlet too accessed using getParameter. I want to get this value in Servlet 3 named as TempServlet. Please help me get the value in the tempServpet using Servlet or JSP