User’s Activity Logging in Asp.net Core MVC Application | C#
| | | |

User’s Activity Logging in Asp.net Core MVC Application | C#

In this Article, I’m going to Implement User’s Activity Logging in Asp.net Core MVC Application. If an application is managed by more than one users then you must be aware that who is performing which activity. Why Activity Logging Before start Implementation, you must have a clear idea for what kind of applications Activity Logging is necessary….

CRUD Operations in Asp.net Core MVC
| | | | | | | |

CRUD Operations in Asp.net Core MVC

Yes, I’d say a large percentage of most applications I’ve worked on is basic CRUD(Create, Read, Update, Delete) operations. Especially In an Admin Panel, you need to repeat the CRUD Operations for every object in your system. For creating beautiful & responsive UI, I’m using AdminLTE Template. So, In case if you missed Setting up AdminLTE in Asp.net…

Setting up Admin Template in Asp.net Core MVC
| | |

Setting up Admin Template in Asp.net Core MVC

In this part of the tutorial, we’re going to Setup AdminLTE Template in an Empty Asp.net Core MVC Project. This is the 3rd Part of Admin Panel Tutorial Series. Choosing Template for Admin Panel Creating a Database Setup AdminLTE Template in Asp.net Core MVC project Creating Models Login Page for Admin Panel CRUD(Create, Read, Update, Delete) Operations Creating…

Creating Scheduler in c# – Schedule Task by Seconds, Minutes, Hours, Daily
| |

Creating Scheduler in c# – Schedule Task by Seconds, Minutes, Hours, Daily

Hello Guys, Today I’m going to create a very simple Task Scheduler using c# without using any Library. Using this Task Scheduler we’ll be able to Schedule a Task by Seconds, Minutes, Hours and Days.   A Few Days ago, I was working on one of my projects & met with a challenge where I needed to…

Load Data from Database to TreeView Asp.Net – Bootstrap Treeview
| | | | | |

Load Data from Database to TreeView Asp.Net – Bootstrap Treeview

Loading Data from Database to TreeView is difficult as compared to Loading Data into a Table. Let me explain first that why and in what case developers find it difficult. Above all, we need to understand the structure of the Database table from where we want to load data to a TreeView. Actually, TreeView is…

Angularjs UI-Router Nested Views with Asp.Net Core MVC Application
| | | | | | |

Angularjs UI-Router Nested Views with Asp.Net Core MVC Application

Angularjs UI-Router is still the best choice of developers for Routing Purpose. Even with powerful platforms like Asp.Net or Asp.Net Core when you need to load Nested Views and don’t want to reload your page every time then JavaScript’s Frameworks provide us the best Solution And Angular is one of them. Although Asp.Net Core provides Angular…

C# Hashing algorithm class | Asp.Net | .Net Core
| |

C# Hashing algorithm class | Asp.Net | .Net Core

In this article, we’ll learn how to secure your password using already implemented C# hashing algorithm class and the importance of password hashing. Users data is the most important thing in any application so it’s a developer responsibility to keep users data in the most secure way using best practices. When we talk about user account…

Entity Framework Core Database First – Asp.Net Core Scaffold MySql DB
| | | |

Entity Framework Core Database First – Asp.Net Core Scaffold MySql DB

This post will guide you on how to generate Models using Database/Model First Approach and Scaffold MySql Database in Asp.Net Core using Mac. History .Net Core is a lightweight and cross-platform version of the DotNet framework and the awesome thing is Developers required the same expertise to work with Asp.Net Core as .Net Framework. After .Net Core Launch, Mac,…