0

My page display a list of question. Near each question, a button switch a hidden statement to display a model over the page asking for some information. The goal would be, after the user complete the information and click submit, to access the backend and send the information to the database WITHOUT loading another page. I would like this popup to close and the user to resume what he was doing as if he did not do anything.

How would I go about doing something like this ?

Lymn
  • 65
  • 10

1 Answers1

1

You can use ajax and send a Post HttpRequest to an action which would then be tasked to save those information.

Please refer to this thread and this for more info.

Hope this helps you.

javachipper
  • 519
  • 4
  • 15