InterviewSolution
Saved Bookmarks
| 1. |
How can you upload a file using JSP? |
|
Answer» To upload a single file you should use a single <input .../> tag with attribute type = "file".To allow multiple files uploading, include more than one input tags with different values for the name attribute. |
|