/// ----------------------------------------------------------------------------- 
        /// <summary> 
        /// Page_Load runs when the control is loaded 
        /// </summary> 
        /// ----------------------------------------------------------------------------- 
        protected void Page_Load(object sender, System.EventArgs e)
        {
            try
            {
                GuestbookCSController objGuestbookCSs = new GuestbookCSController();
                List<GuestbookEntryInfo> colGuestbookCSs;

                // get the content from the GuestbookCS table 
                colGuestbookCSs = objGuestbookCSs.GetAllEntries(ModuleId);

                if (colGuestbookCSs.Count == 0)
                {
                    // add the content to the GuestbookCS table 
                    GuestbookEntryInfo objGuestbookCS = new GuestbookEntryInfo();
                    objGuestbookCS.ModuleId = ModuleId;
                    objGuestbookCS.SubmitterComment = Localization.GetString("DefaultContent", LocalResourceFile);
                    objGuestbookCS.SubmitterName  = this.UserId.ToString();
                    objGuestbookCSs.InsertGuestbookEntry(objGuestbookCS);
                    // get the content from the GuestbookCS table 
                    //colGuestbookCSs = objGuestbookCSs.GetGuestbookCSs(ModuleId);
                }

                // bind the content to the repeater 
                lstContent.DataSource = colGuestbookCSs;
                lstContent.DataBind();
            }

            catch (Exception exc)
            {
                //Module failed to load 
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }
        /// -----------------------------------------------------------------------------
        /// <summary>
        /// Page_Load runs when the control is loaded
        /// </summary>
        /// -----------------------------------------------------------------------------
        protected void Page_Load(object sender, System.EventArgs e)
        {
            try
            {
                GuestbookCSController     objGuestbookCSs = new GuestbookCSController();
                List <GuestbookEntryInfo> colGuestbookCSs;

                // get the content from the GuestbookCS table
                colGuestbookCSs = objGuestbookCSs.GetAllEntries(ModuleId);

                if (colGuestbookCSs.Count == 0)
                {
                    // add the content to the GuestbookCS table
                    GuestbookEntryInfo objGuestbookCS = new GuestbookEntryInfo();
                    objGuestbookCS.ModuleId         = ModuleId;
                    objGuestbookCS.SubmitterComment = Localization.GetString("DefaultContent", LocalResourceFile);
                    objGuestbookCS.SubmitterName    = this.UserId.ToString();
                    objGuestbookCSs.InsertGuestbookEntry(objGuestbookCS);
                    // get the content from the GuestbookCS table
                    //colGuestbookCSs = objGuestbookCSs.GetGuestbookCSs(ModuleId);
                }

                // bind the content to the repeater
                lstContent.DataSource = colGuestbookCSs;
                lstContent.DataBind();
            }

            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(object sender, EventArgs e)
        {
            try
            {
                GuestbookCSController objGuestbookCSs = new GuestbookCSController();

                GuestbookEntryInfo objGuestbookCS = new GuestbookEntryInfo();

                objGuestbookCS.ModuleId = ModuleId;
                //objGuestbookCS.ItemId = ItemId;
                //objGuestbookCS.Content = txtContent.Text;
                //objGuestbookCS.CreatedByUser = this.UserId;

                if (Null.IsNull(ItemId))
                {
                    // add the content within the GuestbookCS table
                    objGuestbookCSs.InsertGuestbookEntry(objGuestbookCS);
                }
                else
                {
                    // update the content within the GuestbookCS table
                    //objGuestbookCSs.ApproveGuestbookEntry(objGuestbookCS);
                }

                // Redirect back to the portal home page
                Response.Redirect(Globals.NavigateURL(), 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(object sender, EventArgs e)
        {
            try
            {
                GuestbookCSController objGuestbookCSs = new GuestbookCSController();

                GuestbookEntryInfo objGuestbookCS = new GuestbookEntryInfo();

                objGuestbookCS.ModuleId = ModuleId;
                //objGuestbookCS.ItemId = ItemId;
                //objGuestbookCS.Content = txtContent.Text;
                //objGuestbookCS.CreatedByUser = this.UserId;

                if (Null.IsNull(ItemId))
                {
                    // add the content within the GuestbookCS table 
                    objGuestbookCSs.InsertGuestbookEntry(objGuestbookCS);
                }
                else
                {
                    // update the content within the GuestbookCS table 
                    //objGuestbookCSs.ApproveGuestbookEntry(objGuestbookCS);
                }

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