World is now on Opti ID! Learn more
World is now on Opti ID! Learn more
Noone can have missed the headless wave going through the web developer community lately. Episerver supports building a headless solution very well with the content delivery api that was added from v11.4. I have personally used it a lot to build S...
Episerver edit mode normally works great. But sometimes a developer manages to crash it. I'll go through the most common issues you can check for to make it work again WebSockets not enabled on IIS Easy to fix by adding the feature to IIS. If you...
Building an integration that keeps working during heavy user load is tricky. Since Episerver uses .NET as underlying framework, a lot of integrations involve consuming different web apis. A key class here is to use the HttpClient class. It's easy...
So you need to do something when content changes? Knowing when content changes can be important in many use cases. You might need to update a search index with the new information, send an email to some editor or similar. That is easy to support...
GetChildren is a decent method that is also cached in the background. But if you have 1000s of children you will get some performance hits. Another good option if you are only searching for a single content item is to use GetBySegment method. This...