On 8/30/06, Anthony N. Frasso <[EMAIL PROTECTED]> wrote:
I don't have the form bean
until I get to the JSP page, so there's no way to
initialize it.

Struts being a classic Model 2 framework requires all requests to go
through an action. Well, this is not a strict requirement just a
standard practice. You never request a page from the browser, you
always request an action. An action usually does some setup stuff like
loading data from database and sticking it into an ActionForm (or into
assorted objects spread all over requst and session scopes, ew!) and
forwards to JSP that displays that data.

http://wiki.apache.org/struts/StrutsCatalogLinkOnlyToActions
http://wiki.apache.org/struts/StrutsManualActionClasses

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to