Mark Pelf

Custom Bootstrap 5 Breadcrumbs – Ver 2: What You Need to Know | HackerNoon

Custom Breadcrumbs for Bootstrap 5 framework Abstract: We are presenting code (CSS) for custom Bootstrap 5 breadcrumbs. This is an improved version of the previously published article. 1 The Need for Better Breadcrumbs Bootstrap 5 framework is coming with very basic Breadcrumbs implementation. I needed something much better, both visually and more functional. Over time, in my applications, I found it very useful to use Breadcrumbs to enable the user to go back to the

Read More »
Software

How to Troubleshoot ‘hostpolicy.dll’ and ‘singlefilehost.exe’ Errors in .NET 8.0.11 | HackerNoon

Breaking Changes in .NET Build Tools From 8.0.0 to 8.0.11 After upgrading to .NET 8.0.11, the build for some of my projects failed… 1 Problem description Build project settings all worked well somewhere around .NET 8.0.0. Later, with the upgrade of .NET runtime to later versions of .NET 8.0 and .NET 9.0 and an upgrade to Visual Studio, some of the projects stopped working. It looks like they introduced breaking changes in the build tools.

Read More »

Your Updated Guide to Building a Multi-language Asp.Net 8 MVC Application: Resource Manager | HackerNoon

1 Resource Manager is still working in Asp.Net 8 MVC For those who like the old-fashioned approach, the good news is that the Resource Manager is still working in Asp.Net 8 MVC. You can use it together at the same time as IStringLocalizer, or even as the only localization mechanism if that is what you like. 1.1 How Resource Manager works So, a typical solution is to use expressions in code like “Resources.SharedResource.Wellcome”. That is

Read More »

Your Updated Guide to Building a Multi-language Asp.Net 8 MVC Application: Forms Validation Strings | HackerNoon

1 Multilingual form validation error strings A separate task is how to handle in Asp.Net MVC application a localization of form validation error strings, or so-called Data Annotation Localization. That is the focus of this article. 2 Other articles in this series Articles in this series are: • ASP.NET 8 – Multilingual Application with single Resx file – Part 1 • ASP.NET 8 – Multilingual Application with single Resx file – Part 2 – Alternative

Read More »
Software

How to Solve the Microsoft.Data.SqlClient.SqlException (0x80131904): Incorrect syntax near ‘$ Error | HackerNoon

NET8/EF8 Breaking Change. Old servers/databases might not understand queries from EF8. Abstract: In .NET8/EF8, when working with the SQL Server, EF might create a newer version of SQL queries that old SQL servers/databases will not understand and will consider that as a Syntax Error. The solution is to synchronize Server and Client Compatibility levels. 1 Problem Description 1.1 The Environment The typical environment to which this article applies is C#/.NET8/Entity Framework 8/MS SQL Server. 1.2

Read More »