
I am trying to get the results of an ASP page to display a fill-in-online-and-print business form. My idea is to mimic a "Wizard" with "Next"/"Back" buttons. Step1.asp allows selection of a form. Step2.asp displays the form ready to fill-in. Everything runs OK until I try to go from Step 2 to Step 3.
Step3.asp needs to display in the bottom frame of a 2-frame page (frameset.asp). The top frame has a "Print Now" button that prints only the bottom frame. PROBLEM: Step3.asp shows up in the bottom frame, but minus all the data that was entered back in Step2.asp. I see a blank form! Step2.asp uses <FORM NAME="frm" ACTION="Frameset.asp" Target="Bottom"> But, it doesn't work! :( If I ditch the frames, the data goes forward OK, but my slick "Wizard" format is corrupted, too. So, what must I do to get the data to appear in the form in Step3's bottom frame?