Form A is submitted to call Form B.
While being in Form B, how can i modify the form fields in the Form A ? Please note i'm not using pop-up windows.
Form A
<form action="FormB" method="post" name=formA>
<input type=text name=HisAge value=33>
<input type=submit value=sumit>
Form B
<form name=formb>
// javascript to change HisAge to 22.
</form>
Thanks very much
While being in Form B, how can i modify the form fields in the Form A ? Please note i'm not using pop-up windows.
Form A
<form action="FormB" method="post" name=formA>
<input type=text name=HisAge value=33>
<input type=submit value=sumit>
Form B
<form name=formb>
// javascript to change HisAge to 22.
</form>
Thanks very much