
Return a partial to the view from C# controller method (MVC) using AJAX
Return a partial to the view from controller C# with working example
CSS Best Practices | Rules for organizing CSS Code
Best practice, tips and tricks organizing your CSS Code

How to Handle CSS in Your .NET Application
Guide for handling your CSS stylesheets in your .NET Application
Explanation of the SQL LIKE operator and wildcards (contains examples)
This post contains an outline of SQL's LIKE operator
How to Install Font Awesome, Quick and Easy!
The quickest way to get up and running quickly with Font awesome.
The tutorial to rule ALL tutorials on structures (struct) in C#
The struct
keyword in C# is used for creating a structure
.
A structure
is similar to a class and is used to hold values of different types under one home.
However, despite this similarity to a class, there are subtle (but important) differences explored in this article.
How to use $.ajax(). A complete guide with code examples and extra tricks
AJAX stands for Asynchronous JavaScript and XM.
The primary role of Ajax is to handle data asynchronously between a web application and server.
Let's check out what's under the hood!
The protected keyword in CSharp, what is it used for?
The protected keyword is an access modifier applied to the declaration of a class and any of its members that restricts the scope of accessibility to either within the class (or struct) where it is declared or from classes derived (inherited) from it.

What the heck is OWIN for .NET? An indepth look at OWIN for beginners with code examples.
OWIN is a .NET standard for writing web middleware. I had no idea what it was either until I research and wrote this article for beginners who find themselves in a similarly baffled situation.

Logging in .NET CORE 3, a useful guide and walkthrough for C# beginners and experts alike
This article is going to explore the built-in logging framework introduced in ASP.NET Core 3. Microsoft have built up it's logging functionality in ASP.Net Core and there’s plenty of new features to get your teeth into