I encounter a problem while sending a parameter to a Servlet.
My JSP page is retrieving information from a previous servlet displayed like this (${owner)/${numero}):
<div class="control-group">
<label class="control-label">${numero}</label>
<div class="controls">
<span id="user" class="input-xlarge uneditable-input">${owner}</span>
</div>
</div>
but this page is also including a form to forward some params to another Servlet like this:
<form class="form-horizontal" action="/webUpdateStatus?id=${numero}" >
unfortunately the tag ${numero} (correctly displayed in another field) is not displayed in the tag action...any tips to get it displayed and passed to my Servlet ?
Thanks !