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.
我有一个在文本框上使用验证控件的 asp.net 应用程序。但是,如果用户在 txtFieldA 中输入一个值,那么我想禁用 txtFieldB 和 txtFieldC 上的验证控件。
只需使用这个 JavaScript 函数
function Disable() { var myVal = document.getElementById('myValidatorClientID'); ValidatorEnable(myVal, false); }
覆盖Page.Validate()或Page.Validate(string)更改默认验证策略。
Page.Validate()
Page.Validate(string)