Custom client-side validation in ASP.NET
I created a simple custom validation. It works ok on server side (with ModelState.IsValid), but I would like to make it run on client side. Regular validators such as Required and RegularExpression are working great on client side. My custom…