I am uploading files using servlets. Now, i want to process some user input/form data in the same servlet. Is that possible? If, its possible means, how?
As far what i know is, doPost() method have an if
condition to check whether the request contains mutilpart data and in else
block the form processing. How the both if
& else
block getting execute? I am confused.
Any suggestions!!!