我有這樣的Ajax調用4文件上傳它在服務器上,並嘗試上傳文件,我得到一個500錯誤。我現在想做的事情是在.NET端添加錯誤日誌記錄來查看究竟是什麼問題,所以我的問題是如何調整我的.NET方法以顯示錯誤。ASP.NET MVC通過Ajax錯誤記錄
我試圖做一個嘗試,趕上像這樣:
[HttpPost]
public ActionResult Upload(int customerID, int questionID, string community, int lot)
{
for (int i = 0; i < Request.Files.Count; i++)
{
try
{
var file = Request.Files[i];
string path = Path.Combine(Server.MapPath("~/UploadedFiles"),
Path.GetFileName(customerID + "-" + community + lot + "-" + questionID + "-" + file.FileName));
file.SaveAs(path);
}
catch (Exception e)
{
Console.Write(e);
}
}
return Json(new { success = true },
"text/plain");
}
但我怎麼顯示錯誤?
感謝,