0
I have the following code snippet:
<div class='upload-border'>
<input class='file-upload' id="fileUpload" runat="server" type="file" name='upload'/>
</div>
I need to get the local file directory I just selected. With C#, when I use fileUpload.Value in Internet Explorer, you are returning me the correct directory, for example: C: temp myfile.txt. In Chrome, just give me the file name.
I need the complete directory because I need to save this content.
How can I get the directory complete with C#?