On 20050601 5:36 PM, "Lucas Bern" <[EMAIL PROTECTED]> wrote:

> 
> Hi guys! i have a problem
> 
> I need to configurate de "target" attribute of my form, but i have to do it
> from mi action....
> 
> Any idea?

    In the .jsp:

   

If you need to specify it from the action, you'll need to use the html-el
taglib to do this:

    In the action:

    request.setAttribute ( "target", "_foo" );

    In the .jsp:

    <html:link action="Bar" target="${target}">Bar</html:link>

Hope that helps,

John


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

Reply via email to