Get the file path of upload file control in asp.net
Please answer if you know. I choose a picture from a file. And want to get the file path. Not under the project file path. I want to get the file path that I selected. Server.MapPath(fileuploadname) get the path of the project file path. I need the file path that selected. Thank a lot.
midhun bPosted Nov 14, 2013, 5:37 AM
FileUp.postedFile property will give you filename of file upload control
FileUp.postedFile.filename will give you only file name
provided if your page is handling synchronousor asynchronous post back
Jaganathan BantheswaranPosted Nov 12, 2013, 5:27 AM