using System; using System.Data; using System.Collections; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using CMS.CMSHelper; using CMS.GlobalHelper; using CMS.UIControls; public partial class CMSModules_PortalEngine_UI_WebParts_WebPartProperties_binding_frameset : CMSWebPartPropertiesPage { protected void Page_Load(object sender, EventArgs e) { // Check permissions for web part properties UI CurrentUserInfo currentUser = CMSContext.CurrentUser; if (!currentUser.IsAuthorizedPerUIElement("CMS.Content", "WebPartProperties.Bindings")) { RedirectToCMSDeskUIElementAccessDenied("CMS.Content", "WebPartProperties.Bindings"); } frameContent.Attributes.Add("src", "webpartproperties_binding.aspx" + URLHelper.Url.Query); frameButtons.Attributes.Add("src", "webpartproperties_buttons.aspx" + URLHelper.Url.Query); } }