Exemple #1
0
        /// -----------------------------------------------------------------------------
        /// <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
            {
                ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                ATI_GroupAdminInfo       objATI_GroupAdmin  = new ATI_GroupAdminInfo();

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

                //Update the content within the ATI_GroupAdmin table
                if (Null.IsNull(ItemId))
                {
                    objATI_GroupAdmins.AddATI_GroupAdmin(objATI_GroupAdmin);
                }
                else
                {
                    objATI_GroupAdmins.UpdateATI_GroupAdmin(objATI_GroupAdmin);
                }

                //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);
            }
        }
Exemple #2
0
        /// -----------------------------------------------------------------------------
        /// <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 ATI_GroupAdmin 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
                        ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                        ATI_GroupAdminInfo       objATI_GroupAdmin  = objATI_GroupAdmins.GetATI_GroupAdmin(ModuleId, ItemId);
                        if (objATI_GroupAdmin != null)
                        {
                            txtContent.Text        = objATI_GroupAdmin.Content;
                            ctlAudit.CreatedByUser = objATI_GroupAdmin.CreatedByUser.ToString();
                            ctlAudit.CreatedDate   = objATI_GroupAdmin.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);
            }
        }
Exemple #3
0
        /// -----------------------------------------------------------------------------
        /// <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))
                {
                    ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                    objATI_GroupAdmins.DeleteATI_GroupAdmin(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>
        /// 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))
                {
                    ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                    objATI_GroupAdmins.DeleteATI_GroupAdmin(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>
        /// 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 ATI_GroupAdmin 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
                        ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                        ATI_GroupAdminInfo objATI_GroupAdmin = objATI_GroupAdmins.GetATI_GroupAdmin(ModuleId,ItemId);
                        if (objATI_GroupAdmin != null)
                        {
                            txtContent.Text = objATI_GroupAdmin.Content;
                            ctlAudit.CreatedByUser = objATI_GroupAdmin.CreatedByUser.ToString();
                            ctlAudit.CreatedDate = objATI_GroupAdmin.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>
        /// 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
            {
                ATI_GroupAdminController objATI_GroupAdmins = new ATI_GroupAdminController();
                ATI_GroupAdminInfo objATI_GroupAdmin = new ATI_GroupAdminInfo();

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

                //Update the content within the ATI_GroupAdmin table
                if(Null.IsNull(ItemId))
                {
                    objATI_GroupAdmins.AddATI_GroupAdmin(objATI_GroupAdmin);
                }
                else
                {
                    objATI_GroupAdmins.UpdateATI_GroupAdmin(objATI_GroupAdmin);
                }

                //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);
            }
        }