|
-
Feb 23rd, 2001, 06:01 AM
#1
Thread Starter
Hyperactive Member
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 filename. 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.
-
Feb 23rd, 2001, 09:40 AM
#2
Fanatic Member
Try
Code:
<input type="file" name="fName" value="<%=strPhoto%>">
-
Feb 23rd, 2001, 02:42 PM
#3
Thread Starter
Hyperactive Member
Hi Jerry,
will try that out..but its the weekend here....so have to wait till Monday...will try it out and then let u know.
Thanx.
-
Feb 26th, 2001, 12:49 AM
#4
Thread Starter
Hyperactive Member
Jerry,
That doesnt work either....maybe there's some other property that has to be set??? If anyone has any idea please let me know.
Thanx.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|