Example #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_BaseController objATI_Bases = new ATI_BaseController();
                ATI_BaseInfo       objATI_Base  = new ATI_BaseInfo();

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

                //Update the content within the ATI_Base table
                if (Null.IsNull(ItemId))
                {
                    objATI_Bases.AddATI_Base(objATI_Base);
                }
                else
                {
                    objATI_Bases.UpdateATI_Base(objATI_Base);
                }

                //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);
            }
        }
Example #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_Base 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_BaseController objATI_Bases = new ATI_BaseController();
                        ATI_BaseInfo       objATI_Base  = objATI_Bases.GetATI_Base(ModuleId, ItemId);
                        if (objATI_Base != null)
                        {
                            txtContent.Text        = objATI_Base.Content;
                            ctlAudit.CreatedByUser = objATI_Base.CreatedByUser.ToString();
                            ctlAudit.CreatedDate   = objATI_Base.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);
            }
        }
Example #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_BaseController objATI_Bases = new ATI_BaseController();
                    objATI_Bases.DeleteATI_Base(ModuleId, ItemId);

                    //refresh cache
                    SynchronizeModule();
                }

                this.Response.Redirect(Globals.NavigateURL(this.TabId), true);
            }
            catch (Exception exc) //Module failed to load
            {
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }
Example #4
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_BaseController objATI_Bases = new ATI_BaseController();
                    objATI_Bases.DeleteATI_Base(ModuleId,ItemId);

                    //refresh cache
                    SynchronizeModule();
                }

                this.Response.Redirect(Globals.NavigateURL(this.TabId), true);
            }
            catch (Exception exc) //Module failed to load
            {
                Exceptions.ProcessModuleLoadException(this, exc);
            }
        }
Example #5
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_Base 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_BaseController objATI_Bases = new ATI_BaseController();
                        ATI_BaseInfo objATI_Base = objATI_Bases.GetATI_Base(ModuleId,ItemId);
                        if (objATI_Base != null)
                        {
                            txtContent.Text = objATI_Base.Content;
                            ctlAudit.CreatedByUser = objATI_Base.CreatedByUser.ToString();
                            ctlAudit.CreatedDate = objATI_Base.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);
            }
        }
Example #6
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_BaseController objATI_Bases = new ATI_BaseController();
                ATI_BaseInfo objATI_Base = new ATI_BaseInfo();

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

                //Update the content within the ATI_Base table
                if(Null.IsNull(ItemId))
                {
                    objATI_Bases.AddATI_Base(objATI_Base);
                }
                else
                {
                    objATI_Bases.UpdateATI_Base(objATI_Base);
                }

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