Transfer details from one page to another

Oldsoftboss

AWF VIP
Local time
Tomorrow, 00:58
Joined
Oct 28, 2001
Messages
2,499
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
 
Code:
<form> 
<input type="text" name="MyText" value="[COLOR="Red"]<%=request("TextBoxFromPreviousPage")%>[/COLOR]">
</form>
 

Users who are viewing this thread

Back
Top Bottom