RadioButton 属性 enable 设置成 false 以后颜色 变淡了 怎么变成 正常。
谁弄过的 指教下。

解决方案 »

  1.   

    试一试这个Just add attribute onclick="return false;" will make checkbox or radio "read only" in client side~参考http://forums.asp.net/p/1026102/1400039.aspx
      

  2.   

    以前用过的孟老大做的一个效果,用层遮住
    <form id="form1" runat="server">
      <asp:RadioButton ID="RadioButton1" GroupName="x" runat="server" />
      <asp:RadioButton ID="RadioButton2" GroupName="x" runat="server" Checked="true" />
      <div id="blockUI" style="background-color: #FFF; width: 100%; height: 60px; position: absolute;
        left: 0px; top: 0px; z-index: 50000; -moz-opacity: 0; opacity: 0; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(opacity=0)'; filter: alpha(opacity=0);"
        onclick="return false" onmousedown="return false" onmousemove="return false" onmouseup="return false"
        ondblclick="return false">
        &nbsp;
      </div>
      </form>
      

  3.   

    http://topic.csdn.net/u/20100812/20/f0d492d2-f373-46b6-aa9f-a700c6e1dcea.htmlhttp://topic.csdn.net/u/20100330/14/15e8a95b-06ca-4903-afe6-ecef7df35092.html