简体   繁体   中英

In code behind how do I make a validator to not validate?

Like I have this validator on a TextBox:

<asp:RequiredFieldValidator ID="rfvtxtAdd" ValidationGroup="Update" ErrorMessage="*"
    SetFocusOnError="true" ControlToValidate="txtAdd" runat="server" />

I want to turn off this validation check in code behind. How do you do it?

rfvtxtAdd.Enabled = false;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM