我正在使用以下代码。我已经设置了添加项目所需的表单、模型和控制器。我知道代码有效,因为在文本字段中输入文本后,我被重定向到正确的页面。我的问题是:如何将用户输入的文本添加到默认数据库中?
public ActionResult TruckAdd()
{
ViewBag.DisplayText = "Add A Truck";
return View();
}
[HttpPost]
public ActionResult TruckAdd(RegisterTruckModel model)
{
if (ModelState.IsValid)
{
// Attempt to register the Truck
try
{
return RedirectToAction("Index", "Dashboard");
}
catch
{
}
}
// If we got this far, something failed, redisplay form
return View(model);
}