Transfer details from one page to another (1 Viewer)

Oldsoftboss

AWF VIP
Local time
Today, 18: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
 

Sergeant

Someone's gotta do it
Local time
Today, 04:58
Joined
Jan 4, 2003
Messages
638
Code:
<form> 
<input type="text" name="MyText" value="[COLOR="Red"]<%=request("TextBoxFromPreviousPage")%>[/COLOR]">
</form>
 

Users who are viewing this thread

Top Bottom