'Passing a Integer from servlet to html without using JSP and again passing that value from html to another servlet

I have a servlet page FetchServlet.java which has a integer value int id = 1001. This value need to passed to an another HTML page xyz.html. And that id should be again passed to Another Servlet FetchIdServlet.java

How to do it without using JSP and just by using servlet and html file.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source