![]() |
|
|
+ Search |
![]()
|
Apr 9th, 2003 12:52
dave lockard, Quin L,
What comes to mind...
Either place it all in variables and call it in the next page...
<!--page 1-->
<form>
<input type="text" name="name">
...etc...
</form>
<!--page 2-->
<%
myName = request.querystring("name")
' This is the form component from the first text box.
' Create a new one for each form item
' If a value was passed, it will appear in the
' new text box.
%>
<form>
<input type="text" name="name" value="<%=myName%>">
...etc...
</form>
---------
Another alternate method would be to populate the second form on the
same page. Here is a link to a javascript example that does exactly
that.
http://javascript.internet.com/forms/copy-fields.html
-dave
© 1999-2004 Synop Pty Ltd