Let’s take a look at how to Enable/Disable TLS 1.2 in Windows Server using the IISCrypto tool. I will also show how to test TLS 1.2 using some clients like Web Browser Firefox and IE. What is IIS Crypto ? IIS Crypto is a free tool used to enable or disable protocols, ciphers, hashes, and key […]
Browsing Month: June 2020
Angular
Implementing ISO 8601 date time format in Angular
In this post, I will show you how to Implement ISO 8601 date time format in Angular. Formatting a date-time in a client-side application like Angular is always a challenge. Are you looking for an unambiguous calendar-and-clock format that is internationally understood? It’s time for ISO 8601. From ISO.ORG Read more about ISO 8601 DATE AND TIME […]
C-Sharp
Implementing custom validation using IValidatableObject
I recently started Implementing custom validation using IValidatableObject in my DOT NET CORE application. We often use data annotation for simple validation for the properties in our model class. I was wondering how to validate a particular property against some data in the database. I’m happy to know that IValidatableObject can be used to do […]