Take the community feedback survey now.

Magnus Rahl
Jan 29, 2009
  6403
(0 votes)

Dynamic Content goes personal

It started out as a simple Dynamic Content element which displayed the name of the user viewing the page, to enable editors to add greetings like “Hello [user name], welcome to the page!”. I then realized there may be many other uses for that type of personalized Dynamic Content.

Using my own implementation of Anders Hattestad’s Dynamic Content base class (see this blog entry) I created an interface, a custom edit control and a few simple implementations of the interface that output basic user information. The implementation of the rendering class, however, will find all implementations of the interface in any of the application bin folder’s dlls using reflection.

Examples

Here's an example of how it might look (I tried to insert screen dumps here but EPiServer World does not seem to support it):

Hello Test!

This personal information, like your users first name in the headline and your email address testmail@domain.tld are displayed by the ProfileInfo Dynamic Content. It can also display information about other users, like the user with username sogeti whose title is not set.

And in edit mode:

Hello [DynamicContent:ProfileInfo]!

This personal information, like your users first name in the headline and your email address [DynamicContent:ProfileInfo]are displayed by the ProfileInfo Dynamic Content. It can also display information about other users, like the user with username [DynamicContent:ProfileInfo]whose title is [DynamicContent:ProfileInfo].

Each “instance” can be configured to display information either about a specific user or the user viewing the page. Based on the interface implementations available the editor can choose one to display, and a fallback, should the first one return empty (a property not set, user is anonymous etc.). The fallback may be another interface implementation or a free text string, as in the example “not set” above. For an anonymous user the same message, in this case, looks like this:

Hello Anonymous!

This personal information, like your users first name in the headline and your email address Email not set are displayed by the ProfileInfo Dynamic Content. It can also display information about other users, like the user with username sogeti whose title is not set.

The interface also includes a way to replace an existing implementation with a new one if, say, you would want the username to output backwards or rendered as an image instead. The class generating the email link (“-“ for the anonymous user is the fallback text) is actually a replacement implementation which inherits from the original Email implementation and replaces it:

   1: /// 
   2: /// Class that displays the email address as a mailto link
   3: /// 
   4: public class EmailAsLink : Email
   5: {
   6:     public override string Render(EPiServer.PageBase hostPage, EPiServer.Personalization.EPiServerProfile profile)
   7:     {
   8:         if (!profile.IsAnonymous && !string.IsNullOrEmpty(profile.Email))
   9:         {
  10:             return string.Format("{0}", profile.Email);
  11:         }
  12:         else
  13:         {
  14:             // Return null, the selected fallback contents will be used
  15:             return null;
  16:         }
  17:     }
  18:  
  19:     public override Type OverridesType
  20:     {
  21:         get
  22:         {
  23:             // Replace the standard email implementation
  24:             return typeof(Email);
  25:         }
  26:     }
  27: }
  28: }

And strictly there is no limitation to just the profile properties of the user. Using the information in the PageBase and EPiServerProfile objects fed to the interface it’s possible to output the user’s community mypage portrait or a message-of-the-day stored in a dynamic property.

Source code

The source code is available here. A short explanation of the files:

DynamicContentBase.cs: Base class for dynamic content, as mentioned in the beginning of this post.

IProfileProperty.cs: Interface that has to be implemented by classes rendering information in the ProfileInfo Dynamic Content.

ProfileInfo.cs: The actual Dynamic Content implementation. Calls all available IProfileProperty implementations at render time and in edit mode to populate the drop down lists of the dialog.

ProfileInfoFactory.cs: Singleton class that is responsible for finding IProfileProperty implementations at applicaiton start and sorting out replacements.

DefaultImplementaions.cs: Contains a base class for outputing simple string properties of the user profile, as well as several implementations for standard properties such as UserName, FirstName, LastName etc.

EmailAsLink.cs: Replaces the Email implementation in DefaultImplementations.cs, outputing a mailto link instead of just the email text.

And remember: You still have to add the Dynamic Content class ProfileInfo to the episerver/dynamicContent section of your web config file.

Jan 29, 2009

Comments

Sep 21, 2010 10:32 AM

Great post and great idea!

Please login to comment.
Latest blogs
Running Optimizely CMS 12 on .NET 10 in Azure

Upgrade your Optimizely CMS website to .NET 10!

Tomas Hensrud Gulla | Nov 21, 2025 |

Experimentation Evolution with AI (Masterclass Recap)

If you think you are not using AI in your experimentation program you are probably wrong. Ever asked an AI to rephrase a hypothesis or brainstorm a...

Polly Walton | Nov 21, 2025

Effortlessly Configurable Custom Fields for Scheduled Jobs in Optimizely with PlugInProperty

Optimizely CMS lets developers add job parameters—such as textboxes and checkboxes—directly to the scheduled job admin UI using PlugInProperty. Wit...

Ravindra S. Rathore | Nov 21, 2025 |

Optimizely Package Explorer: Now With Extra Superpowers

If you’ve ever opened a .episerverdata file and asked “What is in here?” (guilty as charged) — then this is your moment. We’ve given our open-sourc...

Allan Thraen | Nov 20, 2025 |

Operational observability using application insights to trace checkout end to end

You can’t fix what you can’t see. In a modern, distributed e‑commerce system, the checkout flow touches multiple services from the front-end UI to...

Sanjay Kumar | Nov 19, 2025

Optimizely Web Experimentation on Single Page Applications

  Introduction Most of the modern web applications are built as Single Page applications (SPA) which provides a quick and smooth experience to the...

Ratish | Nov 16, 2025 |