I'm trying to do a system in what the data that the user input the form are saved in page jsp. However not worked! For example:
The user input with data in the form:
<input type="text" name="title" id="title" />
The data that the user input in the form, will be saved in the page jsp:
<% String title = request.getParameter("title") %>
The data will be saved. However when I update the page, the data are missing. I want to make such a comment system.