protected void Page_Load(object sender, EventArgs e) { FoWoSoft.Platform.RoleApp broleApp = new FoWoSoft.Platform.RoleApp(); string id = Request.QueryString["id"]; var roleApp = broleApp.Get(id.ToGuid()); //RoleAppList = broleApp.GetChild(roleApp.ParentID); if (IsPostBack) { string srots = Request.Form["sortapp"]; if (srots.IsNullOrEmpty()) { return; } string[] sortArray = srots.Split(new char[] { ',' }); for (int i = 0; i < sortArray.Length; i++) { Guid guid; if (!sortArray[i].IsGuid(out guid)) { continue; } broleApp.UpdateSort(guid, i + 1); } broleApp.ClearAllDataTableCache(); string rid = roleApp.ParentID.ToString(); Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "parent.frames[0].reLoad('" + rid + "');", true); } RoleAppList = broleApp.GetChild(roleApp.ParentID); }
protected void Page_Load(object sender, EventArgs e) { FoWoSoft.Platform.AppLibrary bappLibrary = new FoWoSoft.Platform.AppLibrary(); FoWoSoft.Platform.RoleApp broleApp = new FoWoSoft.Platform.RoleApp(); FoWoSoft.Data.Model.RoleApp roleApp = null; string id = Request.QueryString["id"]; if (IsPostBack) { roleApp = broleApp.Get(id.ToGuid()); if (!Request.Form["Save"].IsNullOrEmpty()) { string name = Request.Form["Name"]; string type = Request.Form["Type"]; string appid = Request.Form["AppID"]; string params1 = Request.Form["Params"]; string ico = Request.Form["Ico"]; FoWoSoft.Data.Model.RoleApp roleApp1 = new FoWoSoft.Data.Model.RoleApp(); roleApp1.ID = Guid.NewGuid(); roleApp1.ParentID = id.ToGuid(); roleApp1.RoleID = roleApp.RoleID; roleApp1.Title = name.Trim(); roleApp1.ParentID = roleApp.ID; roleApp1.Sort = broleApp.GetMaxSort(roleApp.ID); roleApp1.Type = 0; if (appid.IsGuid()) { roleApp1.AppID = appid.ToGuid(); } else { roleApp1.AppID = null; } roleApp1.Params = params1.IsNullOrEmpty() ? null : params1.Trim(); if (!ico.IsNullOrEmpty()) { roleApp1.Ico = ico; } broleApp.Add(roleApp1); broleApp.ClearAllDataTableCache(); FoWoSoft.Platform.Log.Add("添加了应用模板", roleApp1.Serialize(), FoWoSoft.Platform.Log.Types.角色应用); string refreshID = id; Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "alert('添加成功');parent.frames[0].reLoad('" + refreshID + "');", true); } } this.AppTypesOptions.Text = bappLibrary.GetTypeOptions(); }
protected void Page_Load(object sender, EventArgs e) { query = "&id=" + Request.QueryString["id"] + "&appid=" + Request.QueryString["appid"] + "&roleid=" + Request.QueryString["roleid"] + "&userid=" + Request.QueryString["userid"]; string id = Request.QueryString["id"]; Guid appID; if (id.IsGuid(out appID)) { roleApp = broleApp.Get(appID); if (roleApp != null) { name = roleApp.Title; type = roleApp.AppID.HasValue ? bappLibrary.GetTypeByID(roleApp.AppID.Value) : ""; appid = roleApp.AppID.ToString(); params1 = roleApp.Params; ico = roleApp.Ico; parentID = roleApp.ParentID; } } AppID = appid; AppTypesOptions = bappLibrary.GetTypeOptions(type); }
protected void Page_Load(object sender, EventArgs e) { FoWoSoft.Platform.AppLibrary bappLibrary = new FoWoSoft.Platform.AppLibrary(); FoWoSoft.Platform.RoleApp broleApp = new FoWoSoft.Platform.RoleApp(); string id = Request.QueryString["id"]; string name = string.Empty; string type = string.Empty; string appid = string.Empty; string params1 = string.Empty; string ico = string.Empty; Guid appID; if (id.IsGuid(out appID)) { roleApp = broleApp.Get(appID); } if (IsPostBack) { if (!Request.Form["Save"].IsNullOrEmpty()) { name = Request.Form["Name"]; type = Request.Form["Type"]; appid = Request.Form["AppID"]; params1 = Request.Form["Params"]; ico = Request.Form["Ico"]; string oldXML = roleApp.Serialize(); roleApp.Title = name.Trim(); if (appid.IsGuid()) { roleApp.AppID = appid.ToGuid(); } else { roleApp.AppID = null; } roleApp.Params = params1.IsNullOrEmpty() ? null : params1.Trim(); if (!ico.IsNullOrEmpty()) { roleApp.Ico = ico; } else { roleApp.Ico = null; } broleApp.Update(roleApp); broleApp.ClearAllDataTableCache(); FoWoSoft.Platform.Log.Add("修改了应用模板", "", FoWoSoft.Platform.Log.Types.角色应用, oldXML, roleApp.Serialize()); string refreshID = roleApp.ParentID == Guid.Empty ? roleApp.ID.ToString() : roleApp.ParentID.ToString(); Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "parent.frames[0].reLoad('" + refreshID + "');alert('保存成功!');", true); } if (!Request.Form["Delete"].IsNullOrEmpty()) { int i = broleApp.DeleteAndAllChilds(roleApp.ID); broleApp.ClearAllDataTableCache(); FoWoSoft.Platform.Log.Add("删除了模板及其所有下级共" + i.ToString() + "项", roleApp.Serialize(), FoWoSoft.Platform.Log.Types.角色应用); string refreshID = roleApp.ParentID == Guid.Empty ? roleApp.ID.ToString() : roleApp.ParentID.ToString(); Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "parent.frames[0].reLoad('" + refreshID + "');window.location='Body.aspx?id=" + refreshID + "&appid=" + Request.QueryString["appid"] + "&tabid=" + Request.QueryString["tabid"] + "';", true); } } if (roleApp != null && roleApp.AppID.HasValue) { var app = new FoWoSoft.Platform.AppLibrary().Get(roleApp.AppID.Value); if (app != null) { type = app.Type.ToString(); } } if (roleApp != null) { this.Name.Value = roleApp.Title; this.Params.Value = roleApp.Params; this.Ico.Value = roleApp.Ico; } this.AppTypesOptions.Text = bappLibrary.GetTypeOptions(type); AppID = roleApp.AppID.ToString(); }