No Joy...
I also tried this....
<mt:setrecipient type="to" address="<%= request.getParameter('Email') %>"/>
Still no joy..
Is there anyway of finding out what the tag library expects
Thanks anyway.
Kevin
-----Original Message-----
From: Glenn Nielsen [mailto:[EMAIL PROTECTED]]
Sent: 12 July 2002 13:40
To: Tag Libraries Users List
Subject: Re: Mailer SETRECIPIENT as a .getParameter("Email")
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]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>