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

0

你没有使用 ajax,所以这段代码不起作用,你需要这样的东西,验证摘要:我假设生成表单视图的操作和提交方法的操作具有相同的名称。

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

 public ActionResult actionname(IEnumerable<HttpPostedFileBase> files)
 {
  message = "your load in failed";
  ModelState.AddModelError(string.Empty, message );
  return View();   
 }
于 2013-04-12T14:14:26.250 回答