Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello All,

I am not getting full path of uploaded file in Mozilla Firefox and getting from IE. Below is the code I have used to get path.

string strFileName = fileUpload.postedFile.FileName;


I have to read that file and show it on gridview.

Is there any way to get file path from Mozilla.

Thanks in advance.
Posted
Updated 22-Apr-13 2:38am
v2
Comments
Ali Reza Barkhordari 22-Apr-13 9:02am    
Are you want to get full path of a file in client computer ?
[no name] 15-Aug-13 2:32am    
What exactly you want?

1 solution

This is what you can get:
C#
string path = FileUpload1.PostedFile.FileName 

AFAIR, recent browsers do not pass on the full filepath any more because of security reasons.

Have a look at the following discussions on similar topic:
FileUpload loses directory path.[^]
FileUpload.PostedFile.FileName not giving full path in chrome[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900