How to get FullName with path info in FireFox using asp.net upload control?
With IE, I can get the FullName of a file with the full path info using asp.net upload control:
<asp:FileUpload ID="FileUpload1" runat="server" />
In IE, the FileUpload1.PostedFile.FileName is E:\iProject\Demo1\abc.jpg
But in FireFox, the FileUpload1.PostedFile.FileName is abc.jpg
How can I get the upload file's fileName with full path info when I use FireFox?
I want to use the path info of the file, so I can upload the file to the same folder automatically.
Or can I use javascript to get the path info on the uploadfile field's onchange() event?