|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
Posting from one form on a page to another form
Hello this might seem like a silly question but can you have one form on an html page post to another form on the same page?
Thanks also another silly question I would like to have the information (all of the second form) hidden until the post is sent to it. Is that possible too? Thanks for any feedback. |
|
#2
|
||||
|
||||
|
try
<form name="1" action="(put either refresh in here or the page name)" method="post"> <input type="text" name="text1"> <submit> <form> <form name="2" action="(put either refresh in here or the page name)" method="post"> <input type="text" name="text1" value="document.form1.text1.value"> </form> I think thats right anyway. |
|
#3
|
||||
|
||||
|
sorry... use
<form name="form1" action="(put either refresh in here or the page name)" method="post"> <input type="text" name="text1"> <submit> <form> <form name="form2" action="(put either refresh in here or the page name)" method="post"> <input type="text" name="text1" value="document.form1.text1.value"> </form> made a naming mistake in the first one |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > Posting from one form on a page to another form |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|