1

サーバー側から結果を取得する必要があります。しかし、私は HTml.Begin フォームを使用しています。私のサンプルコードを以下に示します

 @using (Html.BeginForm("actionname", "contollerr", FormMethod.Post, new { enctype = "multipart/form-data" }))
 {

 }

 public ActionResult actionname(IEnumerable<HttpPostedFileBase> files)
 {
  message = "your load in failed";
  return Json(new { success = false, message });   
 }

コントローラーから結果データを取得する方法

4

1 に答える 1