On our ASP MVC view, we have a section where the user can select an attachment using the file
input type and the file path of that file is saved in a field in our SQL database. This works perfectly in IE and, up until recently, I could have sworn worked in Chrome, however I now notice that when you navigate to the file only the file NAME gets saved, not the full path. Has anyone had any similar issues with Chrome and/or know of a work-around?
FYI - This is a small intranet app used by maybe a handfull of employees so security beyond anything basic we already have set up isn't a huge concern.
<div class="M-editor-label" >
@Html.TextBoxFor(model => model.Attachment, new { type = "file" })
</div>