In our ASP MVC3, we need to allow the user to navigate to a shared folder on our LAN and select the file they want associated with a particular item. We want to maintain one copy of the item, so we don't want to do any uploading/downloading, we just want to store the specified file path as a field in a SQL table. What is the best method to do this? Right now I can use this helper open a file browser window and select the file, however only the file name gets stored.
@Html.TextBoxFor(model => model.Attachments[0].Filepath, new { type = "file" })