在WebApp中正确使用带有Model的c#剃刀复选框
本文关键字:Model 复选框 剃刀 WebApp | 更新日期: 2023-09-27 18:21:16
我在c#WebApp中创建一个运行良好的复选框时遇到问题。有人能给我看一个模型的工作版本,以及视图和控制器的外观吗。
型号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TEST.Models
{
public class Checkbox
{
public bool IsChecked { get; set; }
}
}
视图:
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@using (Html.BeginForm())
{
@Html.CheckBox()
}
控制器:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace TEST.Controllers
{
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();
}
}
}
以下是它的工作方式。
型号:
namespace TEST.Models
{
public class Checkbox
{
public bool IsChecked { get; set; }
}
}
控制器:
public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(Checkbox model)
{
// work with model.IsChecked
}
}
视图:
@model TEST.Models.Checkbox
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@using (Html.BeginForm("Index", "Home", FormMethod.Post))
{
@Html.CheckBoxFor(m => m.IsChecked)
}