For binding the ordinary text box we may place code as:
<spring:bind path="ImageId">
<input type="text" name="${status.expression}" value="${status.value}" id="imageId" />
</spring:bind>
But in case if the input type is file then what would be the syntax for bind? and what is the position of ${status.expression} and ${status.value}?
i think this is not possible because HTML spec prevents the setting of the file upload control for security purposes (imagine adding a hidden one preset with some critical file)