I'm developing an email program using JSP. In that I need to send data as well as upload file.
<form name="email" enctype="multipart/form-data" method="post" action="/servlet/sendmail">
<input type="file" name="namefile" size="40">
<input type="text" size="100" name="sub">
<input type="submit" name="submit" value="send">
</form>
In servlet java program I can upload the file but the text fields returns null.
In doPost() method,
String msg=request.getParameter("sub");
Here getParameter()
method returns null for text fields.
Can we include both file type and text in a single form with enctype="multipart/form-data"
?