gpt4 book ai didi

c# - bool 复选框值

转载 作者:太空宇宙 更新时间:2023-11-03 12:04:09 25 4
gpt4 key购买 nike

我的问题是关于复选框 bool 值。

请参阅下图(图片是用户选择“研讨会”的 View )和我当前的实现。

seminar 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>

关于c# - bool 复选框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55825854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com