The Text: <%= request.getAttribute("text") %>

The Query Parameter: <%= request.getAttribute("queryValue") %>

The File name: <%= request.getAttribute("fileName") %>

The File content type: <%= request.getAttribute("contentType") %>

The File size: <%= request.getAttribute("size") %>

The File data:


<%= request.getAttribute("data") %>


Request Parameters

Display the request parameter values to show that the multipart request retains them after a forward.

The Text: <%= request.getParameter("theText") %>
Write File: <%= request.getParameter("writeFile") %>
File Path: <%= request.getParameter("filePath") %>