Umbraco 9 is the new release of Umbraco and it uses .NET 5 rather than .Net Framework 4.x, and as such, most of the coding Behind the scenes has changes quite a bit, this means that you'll most likely... - read more.
14 Mar 2022
If you find yourself populating the configuration object of .NET Core using the GetSection.Get method and all of your properties have been set to null or the default value, then this quick tip may save your hours. - read more.
5 Aug 2021
How to quickly change an Umbraco API Controller to always return response as JSON. - read more.
8 May 2020
Just a quick tutorial on how to get Firebase Cloud Messaging working on Xamarin Forms for both Android and iOS.
Android:
text
See http://lukealderton.com/blog/posts/2017/january/systemtypeloadexceptio... - read more.
1 May 2019
When you're working with a large database and have to search that result set with paging, your first thought might be to select all results and then do the manipulation/count on the web server, sure that'd work, but it isn't exactly the most performant approach. Let's take a look at other ways we can produce some easily understood and most importantly, fast code. - read more.
27 Mar 2019
It seems like most pages when you Google for getting the current member or a member by id in Umbraco seem to be from back in 2010 or 2012, well things have changed since the businesslogic days and we're now in the world of Umbraco Services, how do we use them? Solved! - read more.
20 Jul 2018
- 1 Comments
I get a lot of people asking how DNS works, my response is always that your computer asks a server what IP address a domain points to and then goes and makes it's request to that address. But how does DNS really work and why does it work the way it does? That question is a little more involved but i've tried to answer in the simplest way possible without dumbing it down too much. - read more.
11 Jul 2018
In this blog post, I'll describe how to protect the back office/backend of the Umbraco CMS interface by restricting it to a set of specified IP addresses. - read more.
22 May 2018
If like me, you've found yourself with a project that requires operations on hundreds of records simultaneously from a web project, you might have found yourself running a SQL insert/update/delete command for every one, but with the use of a C# DataTable, you'll be able to perform an action on all items with one command. - read more.
27 Feb 2018
When calling @Html.Partial("MyPartialName", myModel), you might sometimes run into 'Cannot bind source type Umbraco.Web.Models.RenderModel to model type xx', it turns out that the solution to this issue might be a little simpler than you first thought. - read more.
7 Nov 2017
- 1 Comments