剃刀页面在发布时不具有约束力

时间:2020-06-10 02:34:20

标签: javascript c# razor

我的表单非常简单,只有一个对象,但是当我发布数据时,对象中的所有字段都是null0

[BindProperty]
public Person oPersonToDelete { get; set; }
public IActionResult OnPost()
{
  Person oPD  = oDb.Delete(oPersonToDelete.EmpId);

  if(oPD != null)
  {
    return RedirectToPage("/Employees");
  }
  else
  {
    return RedirectToPage("/NotFound");
  }
}

0 个答案:

没有答案