Example:
window.open("LoginServlet", "_self");
This code will make the browser to redirect to LoginSevlet but it executes doGet method of Servlet but I want to execute the doPost method.
Is there any way through which I can directly execute the doPost method of LoginServlet?