Display Data in DataGrid | .NET WPF Grid Layout Tutorial
|

Display Data in DataGrid | .NET WPF Grid Layout Tutorial

Windows Presentation Foundation (WPF) is a User Interface Framework provided by Microsoft to develop desktop client applications. It has a variety of controls to work. DataGrid is one of them. What is DataGrid? DataGrid is a WPF control which is used to display data in a customizable grid. The “customizable grid” means that we have…

Multi-threaded TCP Server using Dotnet Core Example | C#
| | |

Multi-threaded TCP Server using Dotnet Core Example | C#

Many times during my job as a developer I have assigned a task to Develop a Multi-threaded TCP server for handling multiple Clients. Once I developed a TCP server for Vehicle Tracker Devices & I have also developed a TCP Server for handling multiple Smart Meters. Every time TCP Server developed using .Net Core was…

The Ultimate Guide to the Best .NET Core E-commerce Open Source Platforms
| | | | | |

The Ultimate Guide to the Best .NET Core E-commerce Open Source Platforms

One of the most important things is Choosing an e-commerce platform when you’re going to start an online business. Not all like to install a WordPress theme & start selling. Some are quite conscious of choosing technologies because there are many factors you need to consider – high-performance, scalability, security, extensibility, pricing, programming language, etc….

Creating Email Sending Application using Asp.net Core | Open Source
| | | | |

Creating Email Sending Application using Asp.net Core | Open Source

Hey Guys, In this Article, we’re going to Create a very simple Email Sending Contact Form Application using C# with Asp.net Core. We’ll use a beautiful HTML5 Contact Form Template by colorlib for this Tutorial. Setting Up Project Let’s start by creating a new Asp.net Core Project. I’m going to create an Empty Project using…

Best 20 .Net Core Libraries Every Developer should know
| | | | |

Best 20 .Net Core Libraries Every Developer should know

.Net Core is a lightweight and cross-platform version of the DotNet framework and the wonderful thing is that Developers required the same expertise to code with .Net Core as .Net Framework. With Every new Update, new features are added that help developers deploy high-performance & highly scalable applications using less Code. In this article, I’m listing down some of the most…

Error Logging in Asp.Net Core Application | NLog | Log4Net | Tutorials
| | | | |

Error Logging in Asp.Net Core Application | NLog | Log4Net | Tutorials

I find it tough to believe that many developers do not use any Logging library in their applications. For a Web Applications, Error Logging is one of the key attributes to help troubleshoot application bugs. In many cases, developers don’t have direct access to his application after deployment. So, in order to assure the application’s…

Why I’m in Love with .Net Core – Future of .Net Core 2019
| | | | |

Why I’m in Love with .Net Core – Future of .Net Core 2019

If you ask “what is the best” type of questions, you will end up with biased answers, usually. Everyone will tell you his own preference. Although you have listened to this famous Quote “Love is blind” & no one believes to defend his love with arguments & solid pieces of evidence, but In this Article,…

Creating Interactive Dashboards in Asp.net Core MVC
| | | | | | |

Creating Interactive Dashboards in Asp.net Core MVC

Dashboards used to represent Application’s Data. Actually one of the main purposes of a Dashboard is to give an overview of the complete application. In Applications like Admin Panel, Dashboards should be Powerfull enough to give a complete summary of your Apps running in a real-time environment. Here’s my Tutorial, If you’re interested in Dynamic User-defined Dashboards using Asp.Net…

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB
| | | |

Dynamic Role Based Authorization Asp.net Core | Assign Role from DB

Often times, after you’ve authenticated your user, now you want to authorize what he actually has control over based on his role. A user should only have access for what he’s authorized to control. In Applications like Admin Panel where your Application is being managed by multiple users, you must manage your users according to…