如何向数据库添加新信息?

时间:2013-06-02 23:25:51

标签: asp.net-mvc-4 azure-storage

我正在使用以下代码。我已经设置了添加项目所需的表单,模型和控制器。我知道代码有效,因为在文本字段中输入文本后,我将重定向到正确的页面。我的问题是:如何将用户输入的文本添加到默认数据库中?

    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);
    }

0 个答案:

没有答案