如何在编辑器窗口中使用相应的布尔值(即)在MVC 4中检查或取消选中复选框。

时间:2013-09-30 12:16:48

标签: asp.net-mvc-4 razorengine

型号:     公共部分类TBLAppUser     {     public bool isActive {get;组; }     }

查看:     @ Html.CheckBoxFor(u => u.useredit.isActive)

1 个答案:

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