R
Ron Hinds
I have the following code on my ASP page:
<INPUT type=file name="FileUpload" value="<%=FileName%>">
I'm passing the value of FileName as part of the Query String and assigning
it like so:
FileName = Request.QueryString("FileName")
It is definitely being passed/assigned correctly - I have this line for
debugging purposes:
Response.AppendToLog "FileName=" & FileName
which outputs the following in the webserver log file (abbreviated for
space):
GET /content/UploadDB.asp FileName=D:\Database\ClassTool.mdb 200
The question is - why isn't the file name showing up in the INPUT box?
<INPUT type=file name="FileUpload" value="<%=FileName%>">
I'm passing the value of FileName as part of the Query String and assigning
it like so:
FileName = Request.QueryString("FileName")
It is definitely being passed/assigned correctly - I have this line for
debugging purposes:
Response.AppendToLog "FileName=" & FileName
which outputs the following in the webserver log file (abbreviated for
space):
GET /content/UploadDB.asp FileName=D:\Database\ClassTool.mdb 200
The question is - why isn't the file name showing up in the INPUT box?