0

我的脚本

$("#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");
}

我试过这样做,但什么也没发生。

4

1 回答 1

3

尝试这个

 $.post('@Url.Action("DeleteConfirmed", "ControllerName")',
            {
                fileName: FileName
            });
于 2013-07-11T02:55:32.640 回答