J
jread
Guest
Do you have your Global.ascx in the Sitefinity Web Application registering your new type? using System; using System.Web; using Telerik.Microsoft.Practices.Unity; using Telerik.Sitefinity.Abstractions; using Telerik.Sitefinity.Web; namespace SitefinityWebApp { public class Global : HttpApplication { protected void Application_Start(object sender, EventArgs e) { Bootstrapper.Initializing += Bootstrapper_Initializing; } void Bootstrapper_Initializing(object sender, Telerik.Sitefinity.Data.ExecutingEventArgs e) { if (e.CommandName == "RegisterRoutes") { ObjectFactory.Container.RegisterType (); } } } }
Continue reading...
Continue reading...