当前位置: 代码迷 >> ASP.NET >> 怎么在后台设置html控件CheckBox不可用
  详细解决方案

怎么在后台设置html控件CheckBox不可用

热度:1000   发布时间:2013-02-25 00:00:00.0
如何在后台设置html控件CheckBox不可用
如题

------解决方案--------------------------------------------------------
public string d="disabled='disabled'";
 
<input type="checkbox" <%=d%> />
  相关解决方案