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 页面,我必须在每个 ASP 按钮中设置:
CausesValidation="False"
去工作。如果不这样做,它就无法运行代码隐藏功能。
有人可以向我解释为什么会这样吗?
您似乎在页面中使用了验证控件。您的页面必须在回发到服务器之前通过验证。下面是 CausesValidation 属性的功能:
CausesValidation 属性指定在单击 Button 控件时是否验证页面。
默认情况下,单击按钮时会执行页面验证。
此属性主要用于在单击取消或重置按钮时阻止验证。