View Full Version : Transfer details from one page to another


Oldsoftboss
06-24-2006, 03:45 PM
Is it possible for people filling out my contact form on my web page have the details they have entered automatically appear in the next web page when they press the submit button?

I have tried

onLoad="document.frmRecieved.name = Request.Form("name")
in the body of the web page, but the field is always blank

Any advice appreciated.

Dave

Sergeant
06-25-2006, 11:04 AM
<form>
<input type="text" name="MyText" value="<%=request("TextBoxFromPreviousPage")%>">
</form>

Oldsoftboss
06-25-2006, 12:52 PM
Thanks Sergent, got it working

http://www.predatorsoftware.com.au/submitafile.asp