模型:公共部分类 TBLAppUser { public bool isActive { get; 放; } }
查看:@Html.CheckBoxFor(u => u.useredit.isActive)
模型:公共部分类 TBLAppUser { public bool isActive { get; 放; } }
查看:@Html.CheckBoxFor(u => u.useredit.isActive)
您初始化 的一个实例TBLAppUser
,将该实例的 设置IsActive
为true
,并将该实例传递给view
。这是一个很简单的情况。我认为您最好查看此处 asp.net/mvc/overview/getting-started 中的介绍性教程。
以下是您的控制器操作的样子
[HttpGet]
public ActionResult Index()
{
var mainModel = //what ever the model you represent by u in the view
mainModel.useredit = new TBLAppUser{ isActive = true};
return View(mainModel);
}