I'm new on JSP and I have a basic question. For the moment, i only know two ways to call a Servlet from HTML code.
Call doPost or doGet :
<form action"servletName" method="POST">
<button type="submit"></button>
</form>
or
<form action"servletName" method="GET">
<button type="submit"></button>
</form>
Call doGet :
<a href="servletName"></a>
Is there some others ?