From: "Phani" <[EMAIL PROTECTED]>
> I am getting the jsp.error.unterminated.tag exception
> because of the following line.
>
> <html:link href="varAssumptions.do?action=View&name="
> + key>view</html:link>
>
> Can I get any help.

You can't write "+key" like that.  I assume you're trying to add the 'key'
property of your form bean to the link.

I do something similar with <c:url>:
    <c:url value="denRegister.do" var="chooseNameURL">
         <c:param name="altKey" value="${result.key}"/>
    </c:url>

I assume there's a similar tag you can nest within <html:link> to give it a
parameter, check the docs.

-- 
Wendy Smoak


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

Reply via email to