我的问题是关于复选框 bool 值。
请参阅下图(图片是用户选择“研讨会”的 View )和我当前的实现。
//in the model, "Popunjen" is checkbox value which displays if a cert
//"seminar" is full or not. Value is set mannually on the "admin" page
public bool Popunjen { get; set; }
我需要一个功能,如果用户在“Popunjen”或“Full”为真(例如列表中的最后一个研讨会)的“研讨会”上单击“Upiši se”(注册英语),则会出现某种错误显示消息。
最好在本页的查看代码上完成吗?它背后的代码是什么?
在没有看到 MVC 代码的情况下,我假设您是从 Controller [HttpGet] 构建 View ,并且表行是从数据库查询填充的。您可以检查“Popunjen”的值,如果它是真的,请禁用“Upiši se”,例如:
<td>
@if (item.Popunjen == true)
{
// disable "Upiši se"
// don't show it
}
else
{
// enable "Upiši se"
}
</td>
我是一名优秀的程序员,十分优秀!