delbd wrote:
But i'd really like to know how i am supposed to access my actionform in jsp. Can't find any doc on it. And bean:write request the name of the bean to use. It does not seems to default to the actionform. So the basic question is simply, where on hell is this actionform??
I always say "where in hell", but "where on hell" has a certain style to it. I think I will start using that if you don't mind.
I'm not sure I understand the problem fully, but your ActionForm is stored in whatever scope and under whatever name you specified for that Action in struts-config.xml.
If you have name="myForm" and scope="request", then you can access your form with "${myForm}".
For example:
<c:set var="details" scope="page" value="${myForm.someProperty}"/>
Hope that helps any.
Erik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]