I have a file field that the user selects a file that I will upload to the server,
After the user selects a file from their pc, IF the page gets refreshed (which it might- a couple things in the web page refreshed the form to perform calculations), how do i keep the value the user entered before the page was refreshed?
I tried adding the value="<%=Request("OrderFile3")%>"></td>
But it does not work. Any suggestions for a type "file" field?
<td align="center"><input type="file" name="OrderFile3" size="40" value="<%=Request("OrderFile3")%>"></td>
After the user selects a file from their pc, IF the page gets refreshed (which it might- a couple things in the web page refreshed the form to perform calculations), how do i keep the value the user entered before the page was refreshed?
I tried adding the value="<%=Request("OrderFile3")%>"></td>
But it does not work. Any suggestions for a type "file" field?
<td align="center"><input type="file" name="OrderFile3" size="40" value="<%=Request("OrderFile3")%>"></td>