Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - February 12, 2021
It is quite common to decorate the ASP.NET MVC controller actions with filter attributes to differentiate cross-cutting concerns from the main concern of the action. Sometimes these filters require the use of other components but the attributes are very limited in their efficiency and dependence injection into an attribute is not directly possible. This post looks at some of the different techniques for injection dependence in action filters in the ASP.NET Core. We discuss when each method...
Kapil Panchal - February 12, 2021
The WPF tree view supports data binding, as all other WPF controls do, but, as the tree view hierarchy does, a normal DataTemplate is often not enough. Instead, we use the Hierarchical Data template, which allows us to template both tree nodes while controlling which property to use as a source for the node's child objects. The tree view tag represents the WPF TreeView control in XAML. The tree view tag represents the WPF TreeView control in XAML. A tree view...
Kapil Panchal - February 11, 2021
In this blog, we will be going to discuss hashing, encryption, and random string generation in ASP.NET Core. We will examine a number of different approaches and explain why some common techniques should be avoided in the latest applications. What is ASP.NET Core? ASP.NET Core is a free open-source platform that was developed by Microsoft along with .NET core. It is a cross-platform that supports almost every operating system like macOS, Windows, and Linux. ASP.NET Core...
Kapil Panchal - February 11, 2021
In this blog, we will introduce infinite scrolling in our Angular application. When we prepare an application, we deal with tons of files at the same time. In this situation, a question will be asked: how to display thousands of registrations on a single page? It is not a good practice to load thousands of records at once on one page, and there are many benefits to implement infinite scrolling. Increase the time on our web site so that we can have faster operations Make...
Kapil Panchal - February 11, 2021
In WPF, Fallback is one of the features of binding fallback values. When we are working with the WPF there are many cases when we get the null values or not the correct binding for handle this type of situation WPF can provide us with Fallback values and Target Null Value. Two types of Fallback values are available. TargetNullValue FallbackValue TargetNullValue is used when we want to display the alternate value when the object property is null. If the object...