File: D:/HostingSpaces/RMourik/bassol.nl/CMS/CMSModules/AdminControls/Pages/UIElementControlPage.aspx.cs
using System;
using System.Web.UI;
using CMS.Helpers;
using CMS.PortalEngine;
using CMS.UIControls;
public partial class CMSModules_AdminControls_Pages_UIElementControlPage : CMSUIPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (UIElement != null)
{
// Load control
String controlPath = UIElement.ElementTargetURL;
if (controlPath != String.Empty)
{
Control ctrl = Page.LoadControl(URLHelper.URLDecode(ResolveUrl(controlPath)));
pnlControl.Controls.Add(ctrl);
}
}
}
}