i want jsp or javascript for save form data for history
-no cookies
-no session
-no database
when your open form, fill form, submit form…
some time user have to come back on form for some change…
all field of form with auto fill with old data…(because 28 fields in form)
You can´t track users/visitors without some kind of authentication and that might require sessions/cookies (and databases).
Closing the page/browser ends the session but cookies and localStorage are persistent.
Serialize the form and the use localStorage to save it.