about upload file

G

Guest

does .net provide any control to upload file? as I need to use the following control to upload fil
<input id="Upload1" type="file" name="Upload1" runat="server"
but when I post back to server(haven't save the form yet, but doing other action), this control's value will lost. While other server control can keep their value

(Or I need to use a variable to store it, and when load the page that containing this control, I need to get the value of the variable, then assign to the file control. But it is true that I need to use the old way as asp does to remember the file control's value?

Thank you for help.
 
A

Andy Gaskell

Check out this article on CodeProject:
http://www.codeproject.com/aspnet/fileupload.asp

Vincent said:
does .net provide any control to upload file? as I need to use the
following control to upload file
<input id="Upload1" type="file" name="Upload1" runat="server">
but when I post back to server(haven't save the form yet, but doing other
action), this control's value will lost. While other server control can
keep their value.
(Or I need to use a variable to store it, and when load the page that
containing this control, I need to get the value of the variable, then
assign to the file control. But it is true that I need to use the old way
as asp does to remember the file control's value?)
 
G

Guest

The contorl in this article's is what I'm using. But as the first post, it contains problem that the value of the contorl does not save at server automatically, so that I need to assign a variable to store it.
 
A

Andy Gaskell

On postback what is the value of Upload1.PostedFile ?

Vincent said:
The contorl in this article's is what I'm using. But as the first post,
it contains problem that the value of the contorl does not save at server
automatically, so that I need to assign a variable to store it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Zero Upload Speed 6
Multiple File Uploads 2
Webtest upload file 1
File Upload Issues 2
<input> file 5
Moodle 2.8 upload SCORM file problem. 0
File Upload Folder Permissions 5
How to Share Pictures on my Forum 4

Top