I am getting null when I am using post method while passing a form to the next page A repeat of this question link text
Title
You are encoding your request as multipart/form-data
, often used to upload files. The servlet container does not include support to automatically decode this data, only application/x-www-form-urlencoded
data (the default). To use multipart/form-data
you need a 3rd party MIME parser like Apache commons fileUpload.