amp is included in url struts tag
- by lakshmanan
Hi,
In my web application, I use strust2 url tag to pass parameters like id etc., For example, I use a link to delete an entity and I use param to pass the id of the entity to be deleted. And I follow this throughout my web app for adding, editing, deleting an entity.
During run time, sometimes, I don't get the params to be stored in my action's bean properties. When I see the link that is generated, I get something like
<a href='/projit1/p/discuss/viewDiscussion.action?d=11&amp;amp;projid=11&amp;disid=4'>
What are these amps for ? why do they sit in between the action calls (made by link via url tag actions ) ? By the time I traverse back and forth in my web app, I get 10s and 20s of amp sitting in the request URL. What is the problem here ? Please help.