Fileupload at Window Forms as ASP.net

jessiang

Member
Joined
Jun 6, 2006
Messages
8
Programming Experience
Beginner
i want to do a fileupload function as in asp.net fileuplaod tools, when select the file/picture their location path will show at textbox and also display the picture.pls helpthanks
 
If you want to have the user select a file you use an OpenFileDialog. Once the user has selected the file you can upload it to a remote location in a number of ways, including My.Computer.Network.UploadFile and WebClient.UploadFile.
 
Back
Top