Kevin Passey wrote:
>
> Hi everyone..
>
> I am new to JSP and TAGlibs so please stick with me.
>
> What is wrong with this line and how can I get this to work..
>
> <mt:setrecipient type="to" address='<%= request.getParameter("Email") %>'/>
>
> If I hard code an address it works fine - is there a work around?
>
Try this:
<mt:setrecipient type="to" address="<%= request.getParameter(\"Email\") %>"/>
Notice how the quotes for the string "Email" are escaped.
Regards,
Glenn
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>