我在 asp GridView 的模板字段中有一个按钮和一个复选框。我希望根据数据字段到期有条件地设置按钮的禁用属性和复选框的选中属性。如果 Expiration 等于 Permanent,则应禁用该按钮并选中该复选框。如果不是,则启用该按钮且未选中复选框。我试过了:
<input type="button" id="expiration" disabled='<%# (string)Eval("Expiration") == "Permanant" ? "disabled" : "enabled" %>' value='<%# Eval("Expiration") %>'/>
<input type="checkbox" id="permanent" checked= '<%# (string)Eval("Expiration") == "Permanant" ? "checked" : "unchecked" %>'/>
但似乎只列出 disabled 和 checked 属性会导致所有按钮被禁用并选中所有复选框。