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.
  • How to Identify Code Is Running on Client or Server in Vue.jsMar 28, 2024. In Vue.js, distinguishing between client and server-side execution is vital, especially in SSR scenarios. By checking for windows or process.server, developers tailor code for respective environments, ensuring seamless operation.
  • 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.
  • What is Blazor WebAssembly?Mar 24, 2024. Blazor WebAssembly, a client-side web framework powered by .NET and C#, empowers developers to craft dynamic and interactive web applications directly in the browser. In this article, we'll explore the capabilities, advantages, and potential of Blazor WebAssembly in revolutionizing web development.
  • Business Rules in ServiceNow and Its Automation PotentialsMar 21, 2024. In this article, we will learn automation and efficiency are important in IT service management. ServiceNow provides an effective toolkit for streamlining corporate procedures and increasing output. Business Rules are one of the core elements of automation in ServiceNow.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • 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
  • 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.
  • Show Dynamics 365 Account Contacts in Side Panel HTML TableFeb 05, 2024. In the Account Entity Form, we are showing the Account Related Contact in the Side Pane using an HTML Page. Learn how to create a JavaScript web resource to load promotions in Microsoft Dynamics 365 using the Xrm API. Additionally, build an HTML web resource for displaying related contact information in a table.
  • Optimizing Angular and C# PerformanceJan 31, 2024. Discusses performance optimization techniques for Angular and C# applications, covering lazy loading, code splitting, server-side rendering, and backend performance improvements in ASP.NET Core.
  • How To Generate Curl Script of the HttpClient in .NETJan 29, 2024. The HttpClientToCurl is a NuGet package for generating the curl script of HttpClient in C# (.Net) supported features: Post, Get, Put and Delete. content types: application/json, text/xml, application/x-www-form-urlencoded
  • 🔒 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.
  • How to Connect Client Computer to Server DomainJan 22, 2024. For Active Directory Federation Services (AD FS) to function, each computer that functions as a federation server must be joined to a domain. Federation server proxies may be joined to a domain, but this is not a requirement.
  • 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.
  • Understanding and Managing Server-Side (Output) Caching in .NetJan 15, 2024. IIS employs System.Web.Caching for efficient output caching. Utilize HttpRuntime.Cache.Insert for CRUD operations, specifying key, value, and optional parameters like dependencies, absolute expiration, and sliding expiration for optimization.
  • 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.
  • How to Restrict Clients Desktop Settings in ServerJan 08, 2024. Learn to restrict client desktop settings on Server 2019 efficiently. Understand the benefits, reduce risks, protect sensitive data, and follow a step-by-step guide for proper implementation.
  • IndexedDB and Its Basic ConceptJan 05, 2024. In this article, we will learn about IndexedDB, a powerful client-side storage API for storing and retrieving structured data asynchronously. Explore its key features, concepts, and a practical example for efficient data management in web applications.
  • Side Pane with Entity Form in Dynamics 365Jan 04, 2024. In Dynamics 365, the "Side Pane" typically refers to a section or area within an entity form where related or additional information is displayed. This section might contain related records, quick views, I frames, or web resources.
  • Azure Key Vault Secret Client Library for Python SDKJan 02, 2024. This module speaks about accessing Key Vault secrets through Python code. Key Vault is a service offered by Azure to store secrets such as passwords, certificates, keys etc in a safe and secure manner.
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • 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.
  • How to Share a Drive and Mapping for Client User?Dec 01, 2023. Learn the proper and easy method to share and map a drive for client users. Follow clear steps from creating a shared folder to setting up permissions in this insightful guide.
  • 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.
  • Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOsNov 17, 2023. Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensures the separation of concerns but also orchestrates a symphony of consistent and predictable API responses. These intricacies extend beyond mere data mapping; they epitomize a strategic approach in harmonizing the internal model intricacies with the API's outward-facing facade. Unveiling the elegance of these detailed mappings and the orchestration of a uniform response structure not only enhances the developer's workflow but also augments client-side integration, presenting an intuitive and standardized communication channel. Addressing these finer points not only establishes a foundation for resilient error handling but also fuels the API's scalability and ease of maintenance, fostering an environment where agility meets reliability.
  • The Dark Side of Life as a Software EngineerNov 06, 2023. Yes, there's a dark side in the life of a software engineer. This article provides a comprehensive and insightful exploration of the lesser-known challenges and complexities that software engineers encounter in their profession. By addressing various facets of the software engineering profession, you shed light on the often unseen struggles that many individuals in the field face.
  • 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.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • 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.
  • Upload Files to SharePoint Online Library using POSTMANOct 09, 2023. In this article we will go thorugh the steps needed to test the Graph API endpoints against the client application.
  • Enhancing ASP.NET Core Web API Responses with Consistent and Predictable Wrapper ClassesSep 27, 2023. In ASP.NET Core Web API, you can use wrapper classes to standardize the format of your API responses. A wrapper class typically contains a status code, a message, and the actual data payload. This helps in providing a consistent structure for your API responses, making it easier for clients to understand and handle them.
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Setting Up Server-Side Google Tag Manager (GTM) with DockerSep 21, 2023. Learn how to set up Server-Side Google Tag Manager (GTM) using Docker for advanced tracking and data processing. Gain flexibility and control over your analytics toolbox effortlessly.
  • 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.
  • Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React.jsSep 18, 2023. In this article we will learn what is the Server-Side Rendering (SSR) and Client-Side Rendering (CSR) in React Js
  • RabbitMQ Implementation for ASP.NET CoreSep 15, 2023. Learn how to implement RabbitMQ in an ASP.NET Core application, covering prerequisites, establishing connections, sending and receiving messages, and building reliable, scalable message-driven applications.
  • Sending Messages with RabbitMQ in .NET CoreSep 11, 2023. Here we will learn how to use RabbitMQ for sending message in dotnet core
  • Keeping Secrets Safe in .NET/ASP.NET Core Applications with Azure Key VaultSep 07, 2023. Securing secrets in .NET/ASP.NET Core applications using Azure Key Vault is crucial for maintaining the confidentiality and integrity of sensitive information such as API keys, connection strings, and certificates. In this example, I'll walk you through the steps to integrate Azure Key Vault into an ASP.NET Core application to keep secrets safe in real time.
  • SignalR to enable real-time communication between clients and the serverSep 04, 2023. SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
  • Registering Applications with Certificates, Secrets, and Federated CredentialsSep 02, 2023. Discover the process of registering applications using certificates, secrets, and federated credentials in this informative guide. Unlock powerful authentication methods for your digital endeavors.
  • 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.
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error HandlingAug 27, 2023. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here's a concise guide on how to achieve this using custom middleware:
  • Effective API Versioning with Custom MiddlewareAug 22, 2023. API versioning with custom middleware, enables clients to access different versions of your API based on the version specified in the request header. This allows you to manage backward compatibility while rolling out new features or changes in a controlled manner. Custom middleware provides a central point for extracting and validating version information, making your versioning logic more modular and maintainable.
  • Implementing Content Negotiation for Flexible Data FormatsAug 16, 2023. Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
  • 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']`.
  • Source Control (4-9-2), Git - Merge in Client SideAug 01, 2023. Explore a comprehensive series of articles on Source Control, ranging from standalone apps like MS SourceSafe to web services like GitHub, Azure DevOps, and Git. Understand merging methods, integration, and comparisons for effective version control.
  • 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.
  • Source Control (4-9-1), Git - Merge in Server SideJul 31, 2023. This article discusses the Merge for Git.
  • 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.
  • Client Credentials Flow - Call Web API to API without user interactionJul 18, 2023. This article shows the way to call API to API with user interaction by using Client Credentials Flow.
  • Secure User Authentication in Azure Using Microsoft.Identity.ClientJul 14, 2023. The process of authenticating users securely is essential in Azure applications. Microsoft.Identity.Client (MSAL) is a C# library that simplifies the implementation of secure user authentication in Azure. It provides functionality for integrating Azure Active Directory (Azure AD) and other identity providers, enabling applications to authenticate and authorize users.
  • Custom search functionality for data tables for server-side processing with PHP and MySQLJun 30, 2023. To add custom search functionality to Data Tables for server-side processing with PHP and MySQL, you can modify the SQL query dynamically based on the search criteria provided by the user.
  • Server Side Pagination in MongoDBJun 21, 2023. Here is a step-by-step guide to implementing server-side pagination in MongoDB.
  • 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.
  • Efficient CRUD Operations with ElasticSearch and .NET Core APIMay 29, 2023. ElasticSearch is a powerful and highly scalable open-source search and analytics engine built on top of Apache Lucene.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • 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.
  • Mastering Angular Best Practices: Tips and Tricks for Building Large-Scale ApplicationsApr 21, 2023. Boost Your Angular Game: Best Practices for Large-Scale Applications. From code optimization to server-side rendering, learn the top tips and tricks to master Angular development and build maintainable, high-performance web applications.
  • 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
  • Dependency Injection In .NET Core - Understanding The Fundamentals And Best PracticesApr 12, 2023. In this article, you will learn about dependency Injection in .NET Core: Understanding the Fundamentals and Best Practices.
  • How To Use MQTT Client In .Net 7Mar 31, 2023. In this article, you will learn how to use MQTT Client in .Net 7.
  • 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.
  • Build A ChatGPT Client And An Image Generator In Blazor Using OpenAI APIMar 23, 2023. In this article, you will learn how to build a chatgpt client and an image generator in blazor using openai api.
  • 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.
  • ChatGPT In .NET 7 API And Testing With PostmanFeb 24, 2023. In this article, I'm going to explain how we can configure chatGPT in .NET7 API and we'll also check the response in postman
  • 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.
  • Getting Specific YouTube Video using C# .NET and YouTube APIFeb 09, 2023. In this article we will learn how to get Videos details of specific video by video id.
  • 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.
  • 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.
  • 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.
  • SharePoint List Operation With Time Trigger Azure FunctionOct 20, 2022. In this article, you will learn about SharePoint List Operation with Time Trigger Azure Function.
  • Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be NullOct 20, 2022. In this article, you will learn about Solution For New-AzResourceGroup : ‘this.Client.SubscriptionId’ Cannot Be Null.
  • Google Tag Manager Server Side TaggingOct 19, 2022. Defines about GTM Server Side Tagging and how it differs from Client-Side Tagging
  • 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 Receive Real-Time Data In An ASP.NET Core Client Application Using SignalR JavaScript ClientOct 10, 2022. This article explains how to connect with SignalR Server hub and receive the message data from the server to the client application using the SignalR JavaScript client in ASP.NET Core 6 application
  • Monitor The Azure Active Directory Client Secret ExpirationOct 06, 2022. In this article, we will learn how to use Azure Functions and PowerShell to monitor the Client Secret Expiration of Azure AD apps and sent reminder emails
  • 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.
  • Validating Client ID And Client Secret Using POSTMANAug 30, 2022. This article explains how to check the validation of client credentials (client id and secret) using POSTMAN and by interacting with Graph API. This also has steps for POST request which is a rare find in internet.
  • Git - 6 Free GUI ClientsAug 13, 2022. We give an overview of six free Git Gui clients.
  • Git - Push From GUI Client Returns "Authentication Failed"Aug 13, 2022. Git push to GitHub or Bitbucket from third party Gui client results in "Authentication Failed."
  • 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.

About Client-Side-Validation

NA

OUR TRAINING