型号: 公共部分类TBLAppUser { public bool isActive {get;组; } }
查看: @ Html.CheckBoxFor(u => u.useredit.isActive)
答案 0 :(得分:0)
初始化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);
}