ok... back...
On the page where the original form is, put something like this
For Each formItem In Request.Form
myVar=formItem & " = """ & trim(Request.Form(formItem)) & """ "
execute(myVar)
Next
The in the inputs on your page, put:
value="<%=theItemName%>"
In the post to page, put hidden inputs and add in an "edit" or "back" button:
<INPUT TYPE="submit" OnClick="this.form.action=original_form_page.asp';" value="Edit Info">
Now, it's all done 
My implementation was a bit more complex, but nothing worth mentioning.
Sorry about taking to long to get back here - I got swamped with work and that part was a low priority.