-1

模型:公共部分类 TBLAppUser { public bool isActive { get; 放; } }

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

4

1 回答 1

0

您初始化 的一个实例TBLAppUser,将该实例的 设置IsActivetrue,并将该实例传递给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); 
} 
于 2013-09-30T13:06:40.883 回答