I started a short time with JSP, JSTL, HTML and JavaScript, so here is my problem:
I need to set var value for hidden input value. Another option is the ability to compare using
<c:if test="....">
the value of the variable that I sent with the request with the value of the hidden input.
Thanks.
Update
I try, but cannot make it work.
I have this field that contains an identifier and an object. I also have a list of objects, so I need to find the object associated with this identifier.
<input type="text" name="id1" />
but if I do this:
<c:set var="dd" value="${param.id1}" />
<input type="text" value="${dd}" />
The input text is empty, but the text related to id1 displays 850 (i.e. the value is dynamic)
Any suggestion why it is not working?
Update 2
"multipart/form-data", . , Java, , JSP, ? .