> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> 
> Hi, I have an attribute called "actionName" in my actionformbean
> and I set it properly in my action class before forward to my jsp
> in the jsp I try to retrieve it like this:
> <form action=<nested:write property="actionName"/>>
> ...
> ...
> </form>
> 
> it always gives me "Attribute value must be quoted" error message in 
> action.jsp
> anything wrong ?

Well, I don't know how much clearer that error message could be.  You
need to change this:

<form action=<nested:write property="actionName"/>>

To:

<form action='<nested:write property="actionName"/>'>

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

Reply via email to