On 2/14/06, Sony Thomas <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a URL set to my form bean. The property in my form bean is called
> "objectLink".
>
> I have to set this link to my <html:link action="objectLink"> The Link
> </html:link>
>
> how is it possible

Here are some ideas, assuming I've understood you correctly..

<html:link page="${myForm.objectLink}">..

<html:link page="<%= myForm.getObjectLink() %>">

<c:url var="link" url="${myForm.objectLink}" />
<a href="${link}">

<%
 String link = response.encodeURL(myForm.getObjectLink());
%>
<a href="<%= link %>">




>
>
> thanks in advance
>
> sony
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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

Reply via email to