AJH.CMS.WEB.UI.Admin.CMSAdmin.LoadMenus C# (CSharp) Method

LoadMenus() private method

private LoadMenus ( ) : void
return void
        void LoadMenus()
        {
            ucTopMenu.KeyControlValue = CMSConfig.ConstantManager.KeyControlValueTopMenu;
            ucTopMenu.LoadXml();

            ucLeftMenu.AttributeKeyValue = new List<string>();
            ucLeftMenu.AttributeKeyValue.Add(CMSConfig.QueryString.ModuleID);
            ucLeftMenu.AttributeDataValue = new List<string>();
            ucLeftMenu.AttributeDataValue.Add(Request.QueryString[CMSConfig.QueryString.ModuleID]);
            ucLeftMenu.KeyControlValue = CMSConfig.ConstantManager.KeyControlValueLeftMenu + Request.QueryString[CMSConfig.QueryString.ModuleID];
            ucLeftMenu.LoadXml();
        }
        #endregion