I was working on a project and came across an issue
I needed to get a file uploaded from client so i used
<form action='upload.jsp' method='post' enctype='multiform/form-data'>
There was no problem till now because only the file was being uploaded and the data was parsed by upload.jsp (found on internet)
But when I added some more input elements to the form, like date and number, and access it on the other page, I'm getting null. How can i decode these input form elements sent with the file?