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.
是否可以通过单击一次按钮同时使用 javascript 验证和 asp.net 验证器(必填字段验证器)。请帮我
ASP.NET 验证器支持客户端验证。
看看:ASP.NET 深度验证,“客户端验证”一章
您需要设置EnableClientScript为true(但无论如何它都是默认值)。
EnableClientScript
true
因此,RequiredFieldValidator如果用户输入了某些内容,则在客户端进行检查。
RequiredFieldValidator