Hi I wrote the below code in a jsp file to upload a file. But before I upload I want to display the entire path of the file in the current jsp itself
 <form method="post" action="SendTheFileName">
            <div id="Files_to_be_shared"> 
                  <input type="file" id="File" name="FileTag" />
                  <input type="submit" value="Share" /> 
           </div>
 Complete path of the file is <%=request.getParameter("File");%>//Is this correct?
I am not getting the complete path value. I get null instead. Can you please let me know how to get the complete path in the current jsp itself
 
    