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.
我有一个相当复杂的表单,我想在表单以某种漂亮的 ajax 方式提交之前对其进行验证。作为其中的一部分,我还想仅在正确填写表单后启用表单提交按钮。
我正在使用 C#/asp.net/jquery
谢谢卢克
您可以使用 ASP.NET 验证组并添加验证摘要。提交按钮将进入定义的验证组,并且只有在表单满足验证要求时才会触发。
<asp:Button ValidationGroup="YourGroupName" runat="server" />