我尝试为checked
设置<input type="checkbox"/>
属性:
checked="<%#Convert.ToBoolean(DataBinder.Eval(Container.DataItem, "IsOperationPerformed")) ? "checked" : string.Empty%>"
但是我收到了错误
类型为参数类型'string'不能分配给参数类型'bool'
IsOperationPerformed
的 Boolean
。
如何添加cheched
属性?
答案 0 :(得分:0)
据我所知,CheckBox should be equal to either true or false并未检查或清空。如果问题仍然存在,请尝试更改并恢复。 希望我能帮忙。
checked="<%#Convert.ToBoolean(DataBinder.Eval(Container.DataItem, "IsOperationPerformed")) ? TRUE : FALSE%>"