Tag: validate
How to validate a user in Active Directory using C#?
Do you want to validate a user with the login credentials like username and password of the user in Active Directory using C#? You can do it using the classes provided in the Directory Services namespace. You need to include the assemblies “System.DirectoryServices” and “System.DirectoryServices.AccountManagement” in your solution. How to validate a user in Active Directory using C#? Below is a sample code snippet demonstrating…
How to Validate a Social Security Number using Regex in C# ?
If you need to validate a social security number in C# , the regular expressions is one of the easy wat to do it . Below is a sample code snippet demonstrating how to validate a social security number using regular expression . The pattern for matching it is that SSN number contains nine digits grouped with hypen as option. How to Validate a Social…