-
Hi All,
I struggling with this problem, Ineed to create a page that have input type file and need the file value to pass another page for proccessing. The value will then need to another page to update. to make the story short, how can I pass the value from page to page?
thanks
-
in the page that you pass the value to, you should do something like
*(File1 is the input name for the file input type)
Dim FileName
FileName = Request.Form("File1").UserFileName
-
Here what I have for the first page:
<INPUT TYPE="file" NAME="txtFile">
for the second page:
strtxtFILE = Request.Form("txtFILE")
this will work fine with the following:
<INPUT TYPE="hidden" value="<%=strtxtFILE%>" NAME="txtFile" >
but Not with this one:
<INPUT TYPE="file" value="<%=strtxtFILE%>" NAME="txtFile" >
-
well what errors are you getting? or is it just not passing the string?