比如这样:
 <div id="div_Analyst" runat="server" style="WIDTH:80%"> <TABLE cellSpacing="0" cellPadding="0" width="100%" border="0"> <TR>     <TD class="z1">希望成为哪个领域的分析师?</TD> </TR> <TR>       <TD class="z1"><asp:textbox id="tboxAnalystField" runat="server" Width="80%" MaxLength="300"></asp:textbox>
           </TD> </TR> <TR> <TD class="z1">主要擅长的是: <asp:checkboxlist id="cboxlstGoodAnalystField" runat="server" RepeatLayout="Flow" RepeatDirection="Horizontal" CellPadding="2" CellSpacing="2"> <asp:ListItem Value="市场分析">市场分析</asp:ListItem> <asp:ListItem Value="技术分析">技术分析</asp:ListItem> <asp:ListItem Value="行业应用分析">行业应用分析</asp:ListItem> </asp:checkboxlist>
         <INPUT id="cboxOther" type="checkbox" name="cboxOther" runat="server">其他 <asp:textbox id="tboxGoodAnalystField" "server"></asp:textbox>
        </TD>
        </TR>
</TABLE> </div>
我怎样才能控制div中的各个控件啊,我想把所有的都设置为不可操作状态
   我仅仅对div控制它的disabled,出现的情况是除了两个输入框外,其它的不可操作,可我想把所有的设置为不可操作状态,该如何...
    先谢过了..