Hi all, Can tag <bean> fetch the value processed by a specified ActionForm? For instance, there's an ActionForm named TestActionForm, which has a field defined with "String test". And the corresponding get-method getTest() will add a prefix "p:" to the field test. Supposing the origin value of test is "a", then whether I can use tag <bean> to get the processed value "p:a"? If can, then how?
Talos