使用 ASP.NET 验证控件时如何将控件从验证中排除?

How to except a control from validating when use ASP.NET validation controls?

我的 .aspx 页面中有一些文本框,其中有一些验证控件(例如 requiredValidator 控件)。当我只单击一个特殊控件而不单击其他控件时,我想执行这些验证控件。

我该怎么办?

在不应触发验证的控件上使用 CausesValidation=False

您还可以使用 validation-groups 来指定要验证的内容。