من قبل
marwa khalaf , .Net Developer , Sands National Academy
The main idea behind this is to use Java script submit() function in order to submit the form without explicitly clicking any submit button. You can attach the document.formname.submit() method to onclick, onchange events of different inputs and perform the form submission. you
can even built a timer function where you can automatically submit the form after xx seconds once the loading is done (can be seen in online test sites).
من قبل
Hazem Salama , Senior Member of Technical Staff , Verizon Communications
In addition to what marwa khalaf suggested, you can also submit data back to the server without leaving the current page using ajax calls. If you use jQuery that would be pretty simple using $.ajax and set the type to "POST". See this link for more details http://api.jquery.com/jQuery.ajax/