You have two options:
1) Ajax instead of a form post. This way, the page never refreshes.
2) The form page will need to consume the previous form post, and set the values to match the incoming data - basically, setting the values on page load after a submit.
example (PHP-ish):
<input type="text" name="Name" value="<?echo ($_POST['Name']);?>" />