A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

Get the latest!

Follow bloggers on Optimizely World to get the latest from people who know all about the Optimizely platform! You will find blog posts from the entire Optimizely community, as well as from the Optimizely development teams.

Start blogging - create your own blog (requires log in)
Manage your blog posts on Optimizely World (requires log in)
Rules for blogging on Optimizely World

Syndication and sharing

loading
  • Syndicated blog - Posted on: Nov 13, 2013

    Lately I’ve seen different ways of creating a menu with correct and semantic html in EPiServer. The example in the EPiServer SDK is just soooo wrong from most perspectives. I think this is the best and simplest way: " ShowRootPage="false"...

  • Syndicated blog - Posted on: Nov 13, 2013

    Give your editors the possibility to select a country from a drop down list. This is a really simple custom property but shows how easy it is to extend EPiServer . First we create the property... namespace DV.CustomProperties { using System; using...

  • Syndicated blog - Posted on: Nov 13, 2013

    If you want to mimic the “Mark page as changed”-checkbox in code it's not so obvious how to do that. PageData writeablePage = CurrentPage.CreateWritableClone(); writeablePage["PageChangedOnPublish"] = true; DataFactory.Instance.Save( writeablePage...

  • Syndicated blog - Posted on: Nov 13, 2013

    If you’re listening to DataFactory events like: protected void Application_Start(object sender, EventArgs e) { EPiServer.DataFactory.Instance.CreatingPage += new EPiServer.PageEventHandler(CreatingOrSavingPage); EPiServer.DataFactory.Instance.Savi...

  • Syndicated blog - Posted on: Nov 13, 2013

    The requirements One of our clients has an enterprise solution with several websites in the same EPiServer database and wanted to be able to publish some content just once and then the content would be reflected on each website. But sometimes they...

  • Syndicated blog - Posted on: Nov 13, 2013

    If you add an EPiServer Property control to the PageLists ItemTemplate it handles CurrentPage as expected, you can also get the CurrentPage by the binding expression: Lets say you have an user control (.ascx) in the ItemTemplate instead, then the...

  • Syndicated blog - Posted on: Nov 13, 2013

    Rewrites tags, dates and pages. Supports the format /Templates/Blog.aspx?id=3&epslanguage=en&year=2012&month=5&page=2&tag=episerver namespace DV.UrlRewriters { using System; using System.Collections.Specialized; using System.Globalization; using...

  • Syndicated blog - Posted on: Nov 13, 2013

    So you've read Joels blogpost about Unified Search and want to try it out, great! It's actually — what I think — one of the cooler features of Find when it comes to actual search and not just querying for data. Too bad it's just for EPiServer 7,...