Category: Pages

API Extensions Helpful Tools Pages Sitefinity

Detecting the Sitefinity Environment (Backend, Design, Preview, Edit) with the SystemManager

The Sitefinity SystemManager is a helper class that simplifies working within the Sitefinity system. Although it supports several advanced operations (such as loading configuration settings, registering web services, etc.) one of it’s most helpful features is the ability to report the current environment in which your code is executing. This is done through several helpful […]

CONTINUE READING
Code Sample Content Blocks Customization Pages Sitefinity Video Widgets

Creating a Hideable Sitefinity Content Block Widget

Adding a content block to a Sitefinity page with a Content widget (such as News, Events, Blogs, etc.) displays that content for both the master list and single item details view for the content. This video demonstrates how you can easily inherit from this control to make a hideable content block that only renders when […]

CONTINUE READING
API Code Sample Pages Permissions Sitefinity Widgets

Add Control to Sitefinity Page with Default Permissions

When adding controls to a Sitefinity page programmatically, by default it’s going to set restricted permissions so that only users in the Administrators role can view them. You can easily change this so that the widget is installed with the default permissions it would get by being dragged onto the page with the following code: […]

CONTINUE READING
Pages Regular Expressions SEO Sitefinity Validation Video

Enabling Special Characters in Sitefinity Page Titles

By default, Sitefinity disallows special characters in the SEO title for a page. This video demonstrates how to override this setting, allowing you to specify different restrictions (or remove them entirely). http://blip.tv/play/AYL0%2BDUC.html?p=1 Regular Expressions You may have noticed that for the first regex property, I replaced it with [^\S\s]. The reason for this is that […]

CONTINUE READING
Code Sample Pages Sitefinity Widgets

Programmatically Adding Controls to a Sitefinity Page

The PageManager in Sitefinity has a method called CreateControl that is overloaded to allow both Compiled (dll) controls as well as simple User Controls (.ascx files) to be initialized and added to a Sitefinity page. Both overloads require a string containing the name of the ContentPlaceholder that will hold the control, which is defined in […]

CONTINUE READING