在运行时将复选框标记为已禁用或已启用

时间:2017-01-24 23:08:39

标签: asp.net vb.net

我有一个boolean变量,如果是true我想设置一些复选框已禁用 我可以在我的HTML文本框中使用此输入文本框 readonly

readonly ="<%# myIsReadOnly %>"

但是checkboxes没有那个。因此,如果该变量为true,则希望禁用它们。 我怎么做?我也使用VB语言。 我有的CheckBox示例是这样的:

<input type = checkbox" name="blah" id="blah"/>

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以手动插入服务器端代码以呈现属性和值。

<input type="checkbox" <%= myIsReadOnly ? "disabled='disabled'" : "" %> />