What is the use of Interceptors in Angular

Interceptors in Angular provide a mechanism to modify or handle HTTP requests and responses globally. They are a versatile tool that helps you implement cross-cutting concerns like authentication, logging, error handling, and caching efficiently. Would you like more details on a specific use case of Angular interceptors, or perhaps a code example tailored to your project? [More]

Super Funda of OOPs in C# - Part 1

C# Language is an Object Oriented Programming model language from Microsoft which is evolving with day by day. It is a leading programming language in Microsoft stacks. As per the standard guidelines of this language, it behaves in following manner while making a type(class) ready to work - (1) Default initialization:(2) Default inheritance and (3) Default constructor [More]

Dynamics 365 Business Central (Dynamics NAV)

This article is intended to highlight the key points relating to Dynamics 365 Business Central (the new SaaS version of Dynamics NAV since 2018). Let's explore with General aspects as well as Technical aspects of Dynamics NAV one by one. [More]

Getting Started with Angular

Angular is an open-source, comprehensive JavaScript framework developed by Google for building dynamic, front-end web applications. It supports MVC framework and good for building Single Page Applications(SPA). Now, it has become most preferred framework for building interactive components-based web applications. [More]

How to convert UTF7 string into ANSI in C#

The simplest way to transforming a UTF-7 encoded string is to use the .net System.Text.Encoding abstract class. It internally uses System.Security class library to provide the transform we are targeting for like ASCII, BigEndianUnicode, Unicode, UTF32, UTF7, and UTF8. [More]