我的脚本
$("#btnDelete").click(function () {
$.post(url, { fileName: _fileNameAttachementPhoto }, function (data) {
$("#ResumePart4").html(data);
});
});
我的控制器
[HttpPost]
public ActionResult DeleteConfirmed(string fileName)
{
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
FileInfo file = new FileInfo(path);
if (file.Exists) {
file.Delete();
}
return RedirectToAction("DeleteConfirmed");
}
我试过这样做,但什么也没发生。