浏览按钮以查找指定位置的文件 - cshtml

时间:2015-11-27 04:40:42

标签: asp.net-mvc

我正在开发一个ASP.NET MVC应用程序。 我的cshtml中有一个文本框,我在其中存储了一些路径。

eg: \\abc\def\hig\lmn

我旁边有一个type =“file”的按钮。 当我单击按钮时,选择文件的对话框应该指向textBox中的路径,而不是打开我的本地硬盘文件夹。

我的cshtml看起来像这样

<div class="row">
                    @Html.LabelFor(model => model.Link, htmlAttributes: new { @class = "control-label col-md-1" })
                    <div class="col-md-8">
                        @Html.TextBoxFor(model => model.Link, new { @class = "form-control" })
                    </div>
                <div class="row">
                    <input type="file" id='inputFile' />

                </div>
 </div>

有人可以帮我吗?

0 个答案:

没有答案