private void Page_Load(object sender, System.EventArgs e)
 {
     try
     {
         if (Request.QueryString["id"] == null)
         {
             Session["lastpage"] = "admin_groups.aspx";
             Session["error"]    = _functions.ErrorMessage(104);
             Response.Redirect("error.aspx", false);
             return;
         }
         try
         {
             GroupId = Convert.ToInt32(Request.QueryString["id"]);
         }
         catch (FormatException fex)
         {
             Session["lastpage"] = "admin_groups.aspx";
             Session["error"]    = _functions.ErrorMessage(105);
             Response.Redirect("error.aspx", false);
             return;
         }
         string [,] arrBrdCrumbs = new string [3, 2];
         arrBrdCrumbs[0, 0]      = "main.aspx";
         arrBrdCrumbs[0, 1]      = "Home";
         arrBrdCrumbs[1, 0]      = "admin.aspx";
         arrBrdCrumbs[1, 1]      = "Administration";
         arrBrdCrumbs[2, 0]      = "admin_groups.aspx";
         arrBrdCrumbs[2, 1]      = "Groups Manager";
         PageTitle        = "Permissions Manager for Group";
         Header.BrdCrumbs = ParseBreadCrumbs(arrBrdCrumbs, PageTitle);
         Header.PageTitle = PageTitle;
         SourcePageName   = "admin_groups_permissions.aspx.cs";
         lblBack.Text     = "<input type=button value=\" Back \" onclick=\"document.location='admin_groups.aspx'\">";
         if (!IsPostBack)
         {
             perm                     = new clsPermissions();
             perm.iGroupId            = GroupId;
             perm.iOrgId              = _functions.GetUserOrgId(HttpContext.Current.User.Identity.Name, false);
             dsPerm                   = perm.GetPermissionListFromGroup();
             dgPermissions.DataSource = new DataView(dsPerm.Tables["Table"]);
             dgPermissions.DataBind();
             if (dsPerm.Tables["Table1"].Rows.Count > 0)
             {
                 ddlNewPerm.DataTextField  = "vchName";
                 ddlNewPerm.DataValueField = "Id";
                 ddlNewPerm.DataSource     = new DataView(dsPerm.Tables["Table1"]);
                 ddlNewPerm.DataBind();
             }
             else
             {
                 ddlNewPerm.Items.Add(new ListItem("<none>", "0"));
                 btnAddPerm.Enabled = false;
             }
         }
     }
     catch (Exception ex)
     {
         _functions.Log(ex, HttpContext.Current.User.Identity.Name, SourcePageName);
         Session["lastpage"]     = ParentPageURL;
         Session["error"]        = ex.Message;
         Session["error_report"] = ex.ToString();
         Response.Redirect("error.aspx", false);
     }
     finally
     {
         if (perm != null)
         {
             perm.Dispose();
         }
     }
 }
        private void Page_Load(object sender, System.EventArgs e)
        {
            try
            {
                OrgId = _functions.GetUserOrgId(HttpContext.Current.User.Identity.Name, false);

                if (Request.QueryString["id"] == null)
                {
                    Session["lastpage"] = this.ParentPageURL;
                    Session["error"]    = _functions.ErrorMessage(104);
                    Response.Redirect("error.aspx", false);
                    return;
                }
                try
                {
                    GroupId = Convert.ToInt32(Request.QueryString["id"]);
                }
                catch (FormatException fex)
                {
                    Session["lastpage"] = this.ParentPageURL;
                    Session["error"]    = _functions.ErrorMessage(105);
                    Response.Redirect("error.aspx", false);
                    return;
                }
                lblBack.Text = "<input type=button value=\" Back \" onclick=\"document.location='admin_groups.aspx'\">";
                if (!IsPostBack)
                {
                    ViewState["GroupId"] = GroupId;

                    perm          = new clsPermissions();
                    user          = new clsUsers();
                    perm.iGroupId = GroupId;
                    perm.iOrgId   = OrgId;
                    user.cAction  = "S";
                    user.iGroupId = GroupId;
                    user.iOrgId   = OrgId;
                    if (user.GroupDetails() == -1)
                    {
                        Session["lastpage"] = ParentPageURL;
                        Session["error"]    = _functions.ErrorMessage(117);
                        Response.Redirect("error.aspx", false);
                        return;
                    }
                    lblGroupName.Text = user.sGroupName.Value;

                    dsPerm = perm.GetPermissionListFromGroup();
                    dgPermissions.DataSource = new DataView(dsPerm.Tables["Table"]);
                    dgPermissions.DataBind();
                    if (dsPerm.Tables["Table1"].Rows.Count > 0)
                    {
                        ddlNewPerm.DataTextField  = "vchName";
                        ddlNewPerm.DataValueField = "Id";
                        ddlNewPerm.DataSource     = new DataView(dsPerm.Tables["Table1"]);
                        ddlNewPerm.DataBind();
                    }
                    else
                    {
                        ddlNewPerm.Items.Add(new ListItem("<none>", "0"));
                        btnAddPerm.Enabled = false;
                    }
                }
            }
            catch (Exception ex)
            {
                _functions.Log(ex, HttpContext.Current.User.Identity.Name, SourcePageName);
                Session["lastpage"]     = this.ParentPageURL;
                Session["error"]        = ex.Message;
                Session["error_report"] = ex.ToString();
                Response.Redirect("error.aspx", false);
            }
            finally
            {
                if (user != null)
                {
                    user.Dispose();
                }
                if (perm != null)
                {
                    perm.Dispose();
                }
            }
        }