Archive of Code Snippet
12
You have not added any widgets to this widgetized area yet. Go to Appearance » Widgets to add widgets to the "Right Sidebar".
Here are some EPiServer extension methods I use in my projects (remember that you need to use .NET 3.5 or later). Update These, and more have been added to the EPiServer World Community project EPiCode.Extensions on EPiCode. Be sure...
Continue reading this entry →This is a little code snippet for when you need to cast a nullable type to its value type. if (startPage.ShowMainFeatured.HasValue) { // Safe to cast if ((bool) startPage.ShowMainFeatured) {...
Continue reading this entry →