我正在尝试打开使用文件控件选择的 csv 文件。
<input type="file" id="fileStoreRoster" style="width:400px;" />
在我的控制器中,我有这个;
public ActionResult Ajax_ImportRoster(string fileName)
我有一些 jQuery 代码应该将文件发布到控制器;
var fileName = $("#fileTimeWindows").val();
$.ajax({
url: appDomain + '/Maintenance/Ajax_ImportWindows',
type: "POST",
data: { fileName: fileName }
});
但是当我打开文件时出现错误
找不到路径的一部分
这仅在我尝试访问用户计算机上的文件时发生在服务器上。