Skip to content

Instantly share code, notes, and snippets.

@sitefinitySDK
Last active September 4, 2018 15:55
using Telerik.Microsoft.Practices.Unity;
using Telerik.Sitefinity.Abstractions;
using Telerik.Sitefinity.Data;
using Telerik.Sitefinity.Web.Compilation;
namespace SitefinityWebApp
{
public class Global : System.Web.HttpApplication
{
private void BootstrapperInitialized(object sender, ExecutedEventArgs e)
{
if (e.CommandName == "Bootstrapped")
{
ObjectFactory.Container.RegisterType<IPageKeyStrategy, CustomFrontendPageKeyStrategy>("Frontend");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment