We have a jsp called search.jsp that looks something like this
<frameset ...>
<frame name="header" src="header.jsp" noresize scrolling="no"/>
<frameset ...>
<frame name="criteria" src="criteria.jsp" noresize scrolling
="no"/>
<frame name="results" src="results.jsp" noresize scrolling
="auto"/>
</frameset>
</frameset>
I have a CriteriaForm that I want to prepopulate some data on using an
Action whenever the user goes to this page. I also want the form stored on
the request not the session. The problem is that my forward from the Action
has to go search.jsp after it populates the form so the form tag on
criteria.jsp cannot find the form on the request. It just creates a new
instance of the form.
I don't want to put it on the session because I don't want to have to worry
about cleaning it up off the session.
This is a small section of a large app ( a few hundred jsp's ) so I have
simplified things a bit.
We think we are kind of stuck with frames because as you can probably guess
we want the results to show up below the criteria and we want to be able to
scroll the results without scrolling the criteria off the screen.
It is an existing app that we are strutsifying so changing look and feel is
not really an option.
Does anyone have a way to do this?
Thanks
2
Mike Two; Putting the tWo in Thoughrks
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>