Hello, These are difference types of validation controls in asp.net 1. CompareValidator 2.CustomValidator 3.RangeValidator 4. RegularExpressionValidator 5.RequiredFieldValidator 6.ValidationSummary
Exactly, or do a search in Google. Your signature has links for asp.net development. Given the basic questions you've asked on this forum about .NET I'd be very wary about going anywhere near these companies to get .NET development work done if your associated with them.
Different Validation types in asp are 1)RequiredFieldValidator 2)CompareValidator 3)RangeValidator 4)RegularExpressionValidator 5)CustomValidator
In SolutionExplorer of Asp.net web page under Validations Tab you can find below controls 1. CompareValidator 2. CustomValidator 3. RangeValidator 4. RegularExpressionValidator 5.RequiredFieldValidator 6. ValidationSummary You can choose any control among provided controls according to your requirement. If you have any doubt, how to use these controls you can PM me.
There are the types of the validations in ASP.Net.... 1. Compare Validator 2. Custom Validator 3. Range Validator 4. Regular Expression Validator 5.Required Field Validator 6. Validation Summary You can choose any in Solution Explorer.... These Validation also used by using Java script...
Also I would suggest that if you have custom validation logic such as numerous business rules you can use custom validator to perform the validations on the client as well as the server . To perform validations you can use the onservervalidate. to call the server side function for validation ClientValidationFunction to call the client or JavaScript function for validation Custom validators can be useful when we have complex business rules that needs to be validated
The validation controls are - 1. Compare Validator 2. Custom Validator 3. Range Validator .etc. Actually these controls just render a JavaScript for validation. I suggest you not to use them because they make the web page heavy and slow. Instead use JavaScript or jQuery for validation.