I'm attempting to submit a form from inside of a frame, and depending on the information submitted, redirect to a new page which I no longer want displayed inside of that frame. I want the new page to displayed in the full browser window, but not a new window. Any help would be greatly appreciated. Regards, Chad
Chad, Before I attempt an answer to your question, can I ask you a favour? Please don't send HTML encoded mail to the list, lesser mortals use crappy mailers and have trouble reading it 8¬) Thanks in advance. If I understand you correctly you want the form to goto a full browser rather than remain in the frame set? If so then something like, untested, should do the trick: <form method=post action="some_page" target="_top"> . . . . </form> the some_page script should then be in a full browser window and you can the do whatever you need there, redirect etc. hth Phil phil.harris@zope.co.uk ----- Original Message ----- From: Fusion Group To: zope@zope.org Sent: 09 June 2000 00:03 Subject: [Zope] redirecting from inside a frame I'm attempting to submit a form from inside of a frame, and depending on the information submitted, redirect to a new page which I no longer want displayed inside of that frame. I want the new page to displayed in the full browser window, but not a new window. Any help would be greatly appreciated. Regards, Chad
The onlyway I can think off, (which doesn't mean its the only way), is to launch a new window and send a HTML document whose content is JavaScript. It would either rewrite the original frame or the entire window depending on you original input and then close itself. ----- Original Message ----- From: Fusion Group To: zope@zope.org Sent: Thursday, June 08, 2000 6:03 PM Subject: [Zope] redirecting from inside a frame I'm attempting to submit a form from inside of a frame, and depending on the information submitted, redirect to a new page which I no longer want displayed inside of that frame. I want the new page to displayed in the full browser window, but not a new window. Any help would be greatly appreciated. Regards, Chad
participants (3)
-
Fusion Group -
Jim Sanford -
Phil Harris