Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在应用程序运行时禁用控件的原因验证属性,因为我有一个单选按钮可以禁用控件,但这仍然会导致验证
我放了这个但没有用。
text.CausesValidation = false;
如果您使用的是 asp 验证器,您将希望禁用验证器以跳过对其正在验证的控件的验证。
例如..如果你有
<asp:RequiredFieldValidator ID="RFV_Text" runat="server" ... >*</asp:RequiredFieldValidator>
然后在服务器代码中,禁用
RFV_Text.enabled = false;