I need an uploader that only allows a single file to upload.
I'm using this HTML Helper:
@Html.EJS().Uploader("ImageFileName").DropArea("control-fluid").Multiple(false).Render()
The UI works fine but the POST request param comes emtpy like this:
-----------------------------187161971819895
Content-Disposition: form-data; name="ImageFileName"; filename=""
Content-Type: application/octet-stream
-----------------------------187161971819895--
Can you fix .Multiple(false) option? If I set the argument to true it works well but it's not the UI behavior that I need.