Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames and Form Submission

Status
Not open for further replies.

OutInLeftField

Programmer
Apr 30, 2002
37
US
Is it possible to do the following:

top frame: submit and reset buttons
lower frame: the form with fields, drop down boxes, etc.

click the submit button on the top frame. The lower portion submits. The next page processes the data and loads a NEW form in the lower frame while the top frame doesn't change. When the user completes this form and clicks the submit button on the top frame, the form submits and a new form loads in the lower frame and so on.

thank you

 
You would need to look into using javascript to submit a form that is in another frame.

Somthing like

parent.frames[0].getElementById('form1').submit()

}...the bane of my life!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top