FileBot 4.7.7 – No License Key Needed

Hey, movie lovers! Are you tired of spending hours organizing your movie collection, renaming files, finding subtitles, and downloading artwork? If so, I have some great news for you. FileBot, the ultimate tool for media management v4.7.7, does not require …

NLog Logging for .NET – nlog.config file

In this blog post, I will show you how to create a nlog config file for logging messages in your .NET applications. Nlog is a popular and flexible logging framework that allows you to write logs to various targets, such …

ASP.net Core libman.json file

This is my default libman.json file I use for my asp.net core websites.

{
  "version": "1.0",
  "defaultProvider": "cdnjs",
  "libraries": [
    {
      "library": "jquery@3.5.1",
      "files": [
        "jquery.js",
        "jquery.min.js",
        "jquery.min.map"
      ],
      "destination": "wwwroot/lib/jquery/dist/"
    },
    {
      "library": "jquery-ajax-unobtrusive@3.2.6",
      "files": [
        "jquery.unobtrusive-ajax.js",
        

Unobtrusive Ajax in ASP.NET Core

Migrating an existing ASP.NET MVC project to ASP.NET Core MVC, and there are no ajax tag helpers?

The tag helpers have been replaced with data-ajax-*** attributes.

To use ajax, you’ll need to reference jquery and jquery.unobtrusive-ajax scripts, you can …