/// -----------------------------------------------------------------------------
        /// <summary>
        /// Page_Load runs when the control is loaded
        /// </summary>
        /// <remarks>
        /// </remarks>
        /// <history>
        /// </history>
        /// -----------------------------------------------------------------------------
        protected void Page_Load(System.Object sender, System.EventArgs e)
        {
            try
            {
                //Determine ItemId of SuperFishMenu to Update
                if (this.Request.QueryString["ItemId"] != null)
                {
                    ItemId = Int32.Parse(this.Request.QueryString["ItemId"]);
                }

                //If this is the first visit to the page, bind the role data to the datalist
                if (Page.IsPostBack == false)
                {
                    cmdDelete.Attributes.Add("onClick", "javascript:return confirm('" + Localization.GetString("DeleteItem") + "');");

                    if (ItemId != -1)
                    {
                        //get content
                        SuperFishMenuController objSuperFishMenus = new SuperFishMenuController();
                        SuperFishMenuInfo objSuperFishMenu = objSuperFishMenus.GetSuperFishMenu(ModuleId, ItemId);
                        if (objSuperFishMenu != null)
                        {
                            txtContent.Text = objSuperFishMenu.Content;
                            ctlAudit.CreatedByUser = objSuperFishMenu.CreatedByUser.ToString();
                            ctlAudit.CreatedDate = objSuperFishMenu.CreatedDate.ToString();
                        }
                        else
                        {
                            Response.Redirect(Globals.NavigateURL(), true);
                        }
                    }
                    else
                    {
                        cmdDelete.Visible = false;
                        ctlAudit.Visible = false;
                    }
                }
            }
            catch (Exception exc) //Module failed to load
            {
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }
        /// -----------------------------------------------------------------------------
        /// <summary>
        /// cmdDelete_Click runs when the delete button is clicked
        /// </summary>
        /// <remarks>
        /// </remarks>
        /// <history>
        /// </history>
        /// -----------------------------------------------------------------------------
        protected void cmdDelete_Click(System.Object sender, System.EventArgs e)
        {
            try
            {
                //Only attempt to delete the item if it exists already
                if (!Null.IsNull(ItemId))
                {
                    SuperFishMenuController objSuperFishMenus = new SuperFishMenuController();
                    objSuperFishMenus.DeleteSuperFishMenu(ModuleId, ItemId);

                    //refresh cache
                    SynchronizeModule();
                }

                this.Response.Redirect(Globals.NavigateURL(this.TabId), true);
            }
            catch (Exception exc) //Module failed to load
            {
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }
        /// -----------------------------------------------------------------------------
        /// <summary>
        /// cmdUpdate_Click runs when the update button is clicked
        /// </summary>
        /// <remarks>
        /// </remarks>
        /// <history>
        /// </history>
        /// -----------------------------------------------------------------------------
        protected void cmdUpdate_Click(System.Object sender, System.EventArgs e)
        {
            try
            {
                SuperFishMenuController objSuperFishMenus = new SuperFishMenuController();
                SuperFishMenuInfo objSuperFishMenu = new SuperFishMenuInfo();

                objSuperFishMenu.ModuleId = ModuleId;
                objSuperFishMenu.ItemId = ItemId;
                objSuperFishMenu.Content = txtContent.Text;
                objSuperFishMenu.CreatedByUser = this.UserId;

                //Update the content within the SuperFishMenu table
                if (Null.IsNull(ItemId))
                {
                    objSuperFishMenus.AddSuperFishMenu(objSuperFishMenu);
                }
                else
                {
                    objSuperFishMenus.UpdateSuperFishMenu(objSuperFishMenu);
                }

                //refresh cache
                SynchronizeModule();

                //Redirect back to the portal home page
                this.Response.Redirect(Globals.NavigateURL(this.TabId), true);
            }
            catch (Exception exc) //Module failed to load
            {
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }