私は次のコードで作業しています。アイテムを追加するために必要なフォーム、モデル、およびコントローラーをセットアップしました。テキストフィールドにテキストを入力した後、正しいページにリダイレクトされるため、コードが機能することはわかっています。私の質問は次のとおりです。ユーザーが入力したテキストをデフォルトのデータベースに追加するにはどうすればよいですか?
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);
}