Hi,

Im working on allowing the users to upload files to the server using ASP. Im using

Code:
<input type="file" name="fName">
to allow the users to select the file.

If the user has already uploaded a file, I want to display the name of the uploaded file. Im storing the uploaded filename in a variable.

My problem is

Code:
<input type="file" name="fName" value="<%Response.Write strPhoto%>">

is not working. Any ideas why???

Thanx.