Generally we specify the doGet
and doPost
in our HTML code, so that servlet will invoke these methods with respect to the call in HTML code.
Is there any way that whether we call doPost
or doGet
Servlet doPost
method will get called?
I know there is one way that in doGet
we can call doPost
method , But apart from that is there any other method .