Resources  
  • Information Computation Mastery: Challenges, Concepts, ImplementationMar 28, 2024. To use computers to automate information processing we have to deal with bitstreams as the information representation. By design, bitstream management involves the organization, storage, retrieval, communication, and manipulation to ensure accuracy, security, and accessibility.
  • Options Pattern Validation in .NET Core with ExamplesMar 28, 2024. .NET offers built-in resources for validating settings to ensure correctness without manual checks. Techniques like data annotations and custom validations streamline the process, enhancing configuration reliability and maintenance.
  • Best Practices for Designing APIs in .NETMar 26, 2024. This article provides a thorough overview of the fundamental principles, criteria, and concerns for creating APIs in.NET.
  • Understanding Sharing in Lists on SharePoint Communication SitesMar 05, 2024. This guide provides detailed instructions on utilizing the Share option in lists on SharePoint Communication Sites. It covers the login steps, navigating to lists, selecting items to share, opening the Share dialog, adding recipients, selecting permission levels, and sending the invitation.
  • Reactive Forms In Angular with Practical Example Mar 01, 2024. Angular is a popular framework for building dynamic web applications, and one of its key features is its powerful Forms module. Angular offers two types of forms: template-driven forms and reactive forms. In this article, we'll delve into reactive forms in Angular, exploring their benefits, how to create them, and how to work with them effectively.
  • Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive FormsFeb 26, 2024. Steps to add validation for URL using the regex pattern in the angular application. I will explain steps to create a form with text input using the reactive forms in angular. This input field will only accept the URL.
  • Mobile Number Validation Using Angular and BootstrapFeb 19, 2024. This article illustrates the implementation steps for 10-digit mobile number validation in an Angular app using reactive forms and Angular's phone number validation pattern. It guides us through setting up the reactive forms module
  • Android Responsive Login Screen Design using Constraint LayoutFeb 16, 2024. In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 07, 2024. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
  • 🔒 Azure Key Vault Certificate Validation with C#Jan 23, 2024. In this informative article, we will delve into the world of secure certificate validation in the Azure Key Vault environment using C#. By leveraging the power of the X509Certificate2 class, we can implement robust and secure certificate validation, ensuring the integrity and trustworthiness of digital communications. Through practical code examples, we will showcase best practices and seamlessly integrate Azure Key Vault for centralized and secure certificate management. By elevating our understanding of secure coding practices, we can fortify our applications against potential vulnerabilities.
  • Validation Rules in WPFJan 19, 2024. We need validation rules to play a crucial role in maintaining data accuracy and consistency within an application. Learn to enhance the WPF user experience by implementing email pattern-matching validation.
  • Integrating Google Single Sign-On with AngularJan 17, 2024. Angular with Google SSO refers to the integration of Google Single Sign-On (SSO) authentication within an Angular web application. Single Sign-On is a method that allows users to log in to multiple applications or services with a single set of credentials, eliminating the need to remember separate usernames and passwords for each application.
  • Building a Secure PHP MySQL Signup/Login Website with Email VerificationJan 15, 2024. Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with email verification. I'll focus on security best practices, including password encryption using PHP's built-in functions.
  • JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQLJan 10, 2024. In this series of articles, we'll focus on a hands-on, practical implementation of JWT authentication with refresh tokens in .NET Core 6.0 using ADO.NET and SQL, emphasizing real-world scenarios and code examples for a deeper understanding of the underlying concepts.
  • How to Create Login page in PowerApps using SharePointDec 27, 2023. PowerApps with a secure login screen. Learn the step-by-step process, from designing the interface to connecting to data sources, validating user credentials, handling navigation, and ensuring application integrity.
  • ValidateAntiForgeryToken in ASP.NET CoreDec 13, 2023. In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user trusted by a web application. ASP.NET Core provides a built-in defense mechanism against CSRF attacks called ValidateAntiForgeryToken.
  • Using Date Function in Data Validation in ExcelDec 10, 2023. Learn how to use Excel's DATE function for effective data validation. Set criteria for a date column to ensure entries fall within a specific range, enhancing accuracy and data quality.
  • Securing Your .NET Core APIsNov 18, 2023. This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting. By leveraging these techniques, you can ensure data integrity and prevent unauthorized access.
  • Data Validation in ASP.NET Core with FluentValidationOct 19, 2023. FluentValidation in ASP.NET Core Data Validation is a title that encapsulates the concept of using the FluentValidation library within the ASP.NET Core framework for effective data validation. In this context, "FluentValidation" refers to a third-party library that simplifies and streamlines the validation process, allowing developers to define validation rules in a fluent, expressive manner. This title suggests that the article or content will explore how to leverage FluentValidation for robust and structured data validation in ASP.NET Core applications. It highlights the importance of ensuring data integrity and user input validation, which are fundamental aspects of building secure and reliable web applications.
  • Common Interface Architecture With SSOOct 18, 2023. How to consume common interface from multiple consumer with SSO mechanism. The Common Interface Architecture with Single Sign-On (SSO) integrates two essential concepts in the realm of digital identity and access management. In this architecture, a standardized framework, often referred to as the "Common Interface," is established. This interface provides a unified way for different applications, services, or modules to communicate and authenticate users.
  • How To validate Appsetting.json Configuration Values In .NETOct 16, 2023. In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
  • Solution: Login failed for user 'sa'. Microsoft SQL Server, Error 18456Oct 11, 2023. Login failed for user 'sa'. (Microsoft SQL Server, Error 18456)" is the most common error in SQL server login. There are multiple reasons for this error. One potential reason is you are trying to use SQL Server Authentication, but the SQL server instance is configured for Windows Authentication mode.
  • Data Annotation Validation in .NET CoreSep 20, 2023. This article explains how to create custom validation attributes in .NET, even though .NET provides built-in validation attributes. Custom validation attributes are useful when built-in attributes are insufficient for real-time application requirements. The advantages include code centralization and improved code readability and maintainability.
  • C# Security: Best Practices for Secure CodingAug 31, 2023. In this article, we will discuss some of the best practices for writing secure code in C#. These practices include using secure password hashing algorithms to store passwords, validating user input to prevent injection attacks, using parameterized SQL queries, using cryptography to protect sensitive data, using HTTPS to protect data in transit, avoiding hardcoding secrets in code, and keeping code up to date with the latest security patches and updates.
  • Data Validation with Annotations, Custom Attributes, and Fluent ValidationAug 30, 2023. Data Annotations are attributes provided by the System.ComponentModel.DataAnnotations namespace in C#. They allow you to declaratively specify validation rules and constraints directly within your model classes.
  • How to Build a Login Screen in SwiftUI?Aug 24, 2023. Learn how to create a login screen in SwiftUI. Know how you can leverage Apple's feature-rich UI framework in your iOS app development.
  • Salesforce REST API: The Login Request (Authentication Step)Aug 02, 2023. In this article, we will discuss the detailed steps on how to authenticate REST-based requests against Salesforce Org. We will explore the REST payloads for the Request & Response cycle for the request.
  • Capturing Phishing Email Using Custom Middleware in ASP.Net Core Web API Aug 02, 2023. To capture and detect phishing emails using custom middleware in an ASP.NET Core Web API, you can follow these general steps:Create Custom Middleware: Create a custom middleware that will intercept incoming HTTP requests and inspect the email content for potential phishing indicators. Middleware in ASP.NET Core can be used to perform custom processing on incoming requests and outgoing responses.
  • Feature Selection with RFECV in PythonAug 02, 2023. Clarifying the functionality and steps involved in the Recursive Feature Elimination with Cross-Validation (RFECV) process in Python, and addresses common queries regarding the difference between the initial and final number of features selected and the length of `cv_results_['mean_test_score']`.
  • Fluent Validation ASP.NET Core Web API 6.0Jul 31, 2023. Powerful .NET validation library with clean, extendable rules and lambda expressions for easy data validation.
  • What are Functional Requirements? Jul 31, 2023. Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system means what the system should do Like, and Code Compiler should complete the Machine Code.
  • How to Implement Login Stored Procedures with Node.js and MySQL?Jul 27, 2023. In this article, we learn how to create a login stored procedure MySql and how to call Stored Procedure in Node.js.
  • Build Forms Validation in Power AppsJul 19, 2023. Learn how to create and validate forms in Power Apps. Follow the instructions to implement form validation and enable auto-calculation, ensuring data accuracy and smooth user experience.
  • Secure Shell (SSH): A Comprehensive Guide to Secure LoginJun 19, 2023. In this comprehensive guide, you will delve into the world of Secure Shell (SSH) and its usage.
  • How To Create Form With Validation In Next JS ApplicationJun 10, 2023. In this article, we will learn how to create Next JS project and create a Form with Validation using react-bootstrap.
  • Unlock the Potential of Email Mocking: Papercut Integration In C# .NET Core 7 Console AppsMay 22, 2023. This article explores how to effectively test email functionality in a .NET Core C# console application using Papercut. Discover the step-by-step process of mocking Outlook 365 Office emails, sending test emails, and validating email content within the console app. Learn how Papercut simplifies the testing process and enhances the reliability of email-related features.
  • How to validate HTML Code with W3C Validator?Apr 25, 2023. Use of W3C validator tool to validate HTML Code.
  • Best Practices for Building Large-Scale Laravel ApplicationsApr 22, 2023. This article provides tips and best practices for developing large-scale Laravel applications. By following these best practices, you can improve the quality and scalability of your application, make it easier to maintain and update and ensure that it is built using industry-standard coding practices.
  • Blazor Validation Made Easy with RadzenApr 18, 2023. Implementing validation in the Blazor application
  • C# 12 Preview Features: Improving Productivity and PerformanceApr 17, 2023. C# 12 Preview Features: Improving Productivity and Performance
  • Reactive Form Validation In AngularMar 28, 2023. In Angular, you can perform form validation using Reactive Forms. Reactive Forms provide a more programmatic approach to form validation compared to Template-driven Forms. Reactive Forms allow you to define the form controls and their validation rules in the component class.
  • Mastering User Input Validation - A Guide To Implementing Validations In BlazorMar 13, 2023. This article will guide you through the implementation of user input validations in Blazor. You will learn about the different types of validations available, including required validation, regular expression validation, range validation, comparison validation, and custom validation.
  • Package Validation In .NETMar 09, 2023. In this article, we are going to learn about package validation in .Net.
  • Angular Reactive Forms With Validation ExampleFeb 28, 2023. In this article, you will learn about Angular reactive forms with validation example.
  • How To Create Password And Confirm Password Matching Validation In AngularFeb 15, 2023. In this article, you will learn how to create password and confirm password matching validation in angular.
  • Implementing Web3 Login With .NET 6.0 And MetaMask WalletJan 30, 2023. This article will guide you through the process of implementing a Web3 login feature in your .NET 6.0 application using MetaMask wallet. MetaMask is a browser extension that allows users to easily interact with decentralized applications (dApps) on the Ethereum blockchain. By using the Nethereum library, a .NET implementation of the Ethereum protocol, you can integrate the MetaMask Web3 Provider into your .NET 6.0 application and use it to interact with the Ethereum network. We will cover the steps needed to request the user's account, get the nonce, create and sign a transaction, and send it to the Ethereum network. By the end of this article, you will have a basic understanding of how to use MetaMask and Nethereum to implement a Web3 login feature in your .NET 6.0 application.
  • Generate And Validate JSON Schema With JSON Response Using PostmanJan 30, 2023. In this article, you will learn how to generate and validate JSON Schema with JSON Response using POSTMAN.
  • How To Login Multiple CRM Accounts In Microsoft Edge And Google Chrome BrowserJan 09, 2023. Step by step details to create browser profiles in Microsoft Edge and in Google Chrome.
  • Using FluentValidation.DependencyInjectionExtensions To Simplify Validation In .NET ApplicationsJan 02, 2023. This article discusses the use of FluentValidation.DependencyInjectionExtensions, an extension for the popular .NET validation library FluentValidation. The extension enables the use of dependency injection to manage the creation and disposal of validator instances, which can be useful for managing a large number of validators or injecting dependencies into validators. The article provides detailed instructions on how to install and configure the extension, and how to use it to validate models in controllers or other classes. It also includes an example of how to create a custom validator using the FluentValidation library.
  • Mobile Number Validation In Vue.jsDec 28, 2022. In this article, you will learn about Mobile Number Validation in Vue.js.
  • Email Validation In Vue.jsDec 23, 2022. In this article, you will learn about Email Validation in Vue.js.
  • Forms And Basic Validations In ReactDec 21, 2022. In this article, you will learn about Forms and Basic Validations in React.
  • Integrate Facebook Login For A WebsiteNov 28, 2022. In this article, we are going to explore one of the popular social logins that Facebook login and how we can integrate it into our react website by the npm package
  • Outlook Login Failed And Repeatedly Requested A Password In Office 365Nov 23, 2022. Many people, I've noticed, are unable to sign into their Outlook apps. One, in particular, is experiencing difficulties with Outlook and Office 365. They are confronted by "Connecting to: [email protected]" and a password request from Windows Security when they run Outlook.
  • Function To Show Error Message Using jQueryNov 02, 2022. In this article, you will learn about input validation using Javascript at the bottom of input field.
  • Contact Number Validation In AngularNov 01, 2022. This article is all about how to use +91 verification in angular.
  • Caching In RavenDBOct 19, 2022. Caching — what it is, how it is handled in RavenDB, and how you can optimize your database performance with the right caching strategy.
  • How To Create Password And Confirm Password Matching Validation In ReactJSSep 13, 2022. In this article, you will learn how to create Password and Confirm Password Matching Validation in ReactJS.
  • Mobile Number Validation In ReactJS Sep 09, 2022. In this article, you will learn about Mobile Number Validation in ReactJS.
  • How To Post Data To The Controller Using AJAX With Validations In ASP.NET Core Sep 05, 2022. In this article, we are going to discuss how we can post data to controller in asp.net core using Ajax with form serialize and without form serialize. With form serialize we also going to implement validation in form. We are not going to save or retrieve data from database we just post data to the controller.
  • PowerApps - Form Field ValidationsAug 03, 2022. In this article we will see how to apply validations, like required field, numeric field, etc., in a Power Apps form. Form validation is process where a form checks if the information provided by a user is correct or not. The form will either alert the user that they made a mistake and need to fix something to proceed, or the form will be validated and the user will be able to continue with their form submission process.
  • Complete Signup-Login System Using Dependency Jul 11, 2022. To design a complete signup-login system using a dependency with the dashboard from the beginning.
  • Create Registration And Login Functionality In ASP.NET Core Using IdentityJun 27, 2022. In this article, you will learn about ASP.NET Core Login Register .
  • Async Validation In AngularJun 02, 2022. In this article, you will learn about Async Validation In Angular.
  • How To Use The Identity Framework With Refresh Token ValidationsApr 04, 2022. .Net Core JWT Authentication and Authorization Continues with Identity Framework and refreshes Token Validations in Net Core 6
  • Reactive Forms Validation Using Angular 12Apr 04, 2022. In this article, you will learn about reactive forms validation using Angular 12.
  • How To Add Dynamic Controls With Reactive Forms Validations In AngularMar 02, 2022. In this article, you will learn how to add dynamic controls with Reactive Forms validations in angular.
  • PowerApps - PCF - Input Formatter With Regular ExpressionJan 10, 2022. The benefit and advantage of this component is to dynamically apply validation pattern to HTML5 input control with the help of custom regular exppression. Along with this, it also provides some masked input types like “Date”, “DateTime”, “Time”, “Password”. Custom CSS Styles provides freedom to apply attractive styles as per design and branding. If the control is makred as Required, then input box border can be shown in red color just to highlight about invalid input. This code component is developed and distributed considering both Citizen developer and Pro developer use case scenarios. It is very simple to use and configure.
  • Standardize Your Web API's Error Response With ProblemDetails ClassJan 04, 2022. ProblemDetails class lets you standardize the error responses your Web APIs return thus avoiding multiple Devs across multiple teams follow different pattern. And this the RFC-Compliant (https://datatracker.ietf.org/doc/html/rfc7807) way of returning error responses
  • Introduction To Voice Authentication Using JavaScriptDec 27, 2021. Learn how to use the open-source frameworks to do the Voice recognition and validation using JavaScript and Hugging space model from Microsoft
  • Deploy .NET Core API To Azure Cloud And Secure It Using Facebook AuthenticationDec 14, 2021. In this article series, we will learn how to create a .NET Core API that can do CRUD operations on Azure Cosmos DB and then publish it to Azure Cloud. After that, we will secure the API with Easy Auth using Facebook as Identity Provider.
  • A Fix To SQL Server Error 1069 - The Service Did Not Start Due To A Login FailureDec 13, 2021. In this article, you will learn how to fix to sql server error 1069 - the service did not start due to a login failure.
  • Xamarin.Forms - Validation Using Xamarin Community Toolkit - Part TwoNov 26, 2021. In this article, you will learn how to validate xaml elements using Xamarin Community Toolkit in Xamarin.Forms App
  • Xamarin.Forms - Validation Using Xamarin Community ToolkitNov 17, 2021. In this article, you will learn how to validate XAML elements using Xamarin Community Toolkit in Xamarin.Forms App.
  • How To Connect To Microsoft Dataverse In XrmToolBox Using Microsoft Login ControlNov 09, 2021. In this article, you will learn how to connect to Microsoft Dataverse in XrmToolBox using Microsoft Login Control.
  • URL Creation Fundamentals In MVC Nov 07, 2021. In this article, we are going to explore different ways of URL creation in MVC and different fundamental concepts of MVC.
  • Xamarin.Forms - Fluent Validation In MVVMOct 28, 2021. In this article, you will learn how to use fluent validation in MVVM in Xamarin.Forms App.
  • Create Form And Validation In ReactJS Oct 22, 2021. In this article, you will learn how to create Form and validation in Reactjs.
  • Prevent Special Characters In PowerApps FormsOct 19, 2021. In this article, you will learn how to prevent special characters in PowerApps Forms.
  • Advanced Entity Framework Core Tips In Practice: Concurrency, Query filters and SaveChanges Method Abilities💪Sep 20, 2021. I am describing the practical aspects of working with Entity Framework Core. In this article I am touching Concurrency token and RowVersion, on save changes interceptor with a bunch of useful logic like tracking who and when did the change, versions, validations and domain events sending.
  • Power Apps Validation - End Date And Time Should Be Greater Than Start Date And TimeSep 09, 2021. During this article, we will talk about how we can apply DateTime validation in our Power Apps Form. Most of the time, we need to implement, one most common validation in Power Apps where End Datetime must be greater than Start DateTime. How can we apply that validation? Let’s see!
  • Business Rules With Actions Lock, Unlock And Show Error MessageAug 11, 2021. In Dynamics 365 CRM or Power Platform, Business rules provide a quick way of applying business conditions every business rule starts with a condition. In this article we are going to see about 2 Actions Lock/Unlock and Show Error Message with a business scenario on contact entity if Vaccination is done, then lock discount field and if Vaccination is not done and when user tries to enter discount more than 50% then an error message will be shown to the user that maximum discount cannot exceed 20 % else no discount.
  • Create And Validate JWT Token In .NET 5.0Jul 13, 2021. In this article, you will learn how to create and validate JWT tokens in .Net 5.0.
  • Xamarin.Forms - Working With Behaviors In Xamarin.formsJul 13, 2021. In this article, you will learn how to use Behaviors in Xamarin.Forms App
  • .NET Core NUGET packages Jul 05, 2021. In this article, you will learn about the best NuGet packages we can select while developing restful microservices.
  • Integrate Facebook Ads Using ASP.NET MVCJun 18, 2021. In this article, you will learn how to integrate facebook login into your application and using these API's you can retrieve data from Facebook Ads.
  • Form Validations In ASP.NETJun 03, 2021. In this article, you will learn about Form validations in ASP.NET.
  • Manage Forms in React With Formik - Form ValidationMay 29, 2021. In this article, We will see form validation in react form with formik.
  • Form Validation Using JavaScriptMay 05, 2021. In this article, you will learn about Form Validation using JavaScript.
  • Specific Domain Email ID Field Validation Using JavaScript And jQuery☑️Apr 20, 2021. You would have seen regular expression for email address field. But how to handle if your customer is looking for client side validation of email but user should be allowed to enter organization specific domain based emails only. Check the regular expression based validation of email in my article.
  • Complete Login And Registration System In ASP.NET MVC Application With Database ConnectionMar 01, 2021. I have designed and coded simple Login and Registration forms in MVC without using Entity Framework with Database connection, with Simple Dashboard to Display data in MVC.So that Beginner will understand the scenario of working with MVC.
  • How To Validate An Email Address In PythonFeb 07, 2021. In this article, you will learn different ways to verify whether an email address is valid or invalid in Python.
  • How To Validate An Email Address In JavaFeb 07, 2021. Learn how to validate email addresses effectively in Java using regular expressions. This tutorial provides a comprehensive guide on implementing email validation, covering regex patterns, Java code examples, and best practices.
  • C# Artificial Intelligence Login Details - Application Based On SQL Store ProcedureNov 09, 2020. In this article, you will learn about C# Artificial intelligence login details for an application based on a SQL store procedure.
  • Salesforce SOAP API Authentication - Login RequestOct 12, 2020. This article is focused on the Authentication mechanism for Salesforce SOAP-based services.
  • Custom Login And Register With Identity In ASP.NET Core 3.1Oct 09, 2020. In this article, you will learn about custom login & register with identity manager in asp.net core 3.1.
  • Validation Rules In Alexa Dialog ModelSep 30, 2020. In this article, I am going to explain about all of the validation rules in an Alexa skill interaction model.
  • Multiple Validation On A Slot Type In An Interaction Dialog modelSep 30, 2020. In this article, I am going to explain how multiple validations can be applied to a slot in a dialog model of Alexa skill.
  • ClamAV Antivirus Scan On File Upload Content In .NET ApplicationSep 28, 2020. In this article you will learn about ClamAV Antivirus Scan On File Upload Content In .NET Application.
  • Define Slot Validation Rules For Slots In An Alexa Skill Dialog ModelSep 25, 2020. In this article, I am going to demonstrate how to define validation rules for slots.

About Monodevelop-Login-Validation

NA

OUR TRAINING