Thanks Mark, Any other suggestions for having a submit button in one frame submit a form in a separate frame? Our web dev policy is to avoid Javascript, so any ideas along those lines are appreciated.
- Alex -----Original Message----- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 1:38 AM To: Viggio, Alex; Struts Users Mailing List Subject: Re: Using HTML frames in Struts Alex I'm not qualified to say what's best practice... So i won't bulshit you by pretending i am. If i wanted to have a submit button in a seperate frame for a form in another frame i'd be looking at the following.. Form 1 exectutes and action that then executes the submit action for your second form. In fact now i think about it this would work fine, and without javascript. Public firstaction Execute(etc) { forward(mapping.findforward(secondaction); } Cheers mark On 12-12-2002 18:38, "Viggio, Alex" <[EMAIL PROTECTED]> wrote: > What's the best practice for having a submit button submit a form in a > separate frame. I'm trying to avoid this, but the user wants two scrolling > sections on a complex data entry page. > > Thanks, > - Alex > > -----Original Message----- > From: Mark [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 12, 2002 10:26 AM > To: Struts Users Mailing List > Subject: Re: Using HTML frames in Struts > > > David > > I'm developing a webapplication using struts and it has frames.. > > Other than > > <frame src=<html:rewrite href="mypath"/>" /> > > To pass the session through for paranoid people who thing cookies can take > over your mind. But no other problems.. > > Cheers > > mark > > > > > On 12-12-2002 18:18, "David Rothschadl" <[EMAIL PROTECTED]> wrote: > >> >> Hello, >> >> Is there anybody who has used frames within the Struts framework? Our > frame >> set-up, which worked fine in our non-Struts HTML pages, is not working > with >> Struts. Any working examples would be greatly appreciated! >> >> David Rothschadl >> >> >> > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

