1. Get And Post Method in Servlet JSP | Servlet Tutotorial | Advanced Java Tutorial

preview_player
Показать описание
In this Advanced Java Tutorial, you will learn GET and POST methods. And how you can use the get and POST methods in servelet.
#serveletTutorial
#tutoialrays
Рекомендации по теме
Комментарии
Автор

all mention type="submit"


If nothing is being sent when clicking the submit button and there's no progress in the network tab of your browser's developer tools, it suggests that the form submission process is not being triggered at all. Here are some additional troubleshooting steps to identify the problem:

Check Button Type: Ensure that the button used to submit the form is of type "submit". For example:

html
Copy code
<input type="submit" value="Submit">
or

html
Copy code
<button type="submit">Submit</button>


this is the problem i faced and get stuck because if we use other like type="button" and and value ="Submit" it not works because type=" submit " only send request to servlet you may use navigating network tab by inspecting the web page

selva