Setup.aspx.cs
上传用户:cha0314
上传日期:2014-03-02
资源大小:12522k
文件大小:2k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using UDS.Components;
  12. namespace UDS.SubModule.UnitiveDocument.Setup
  13. {
  14. /// <summary>
  15. /// Setup 的摘要说明。
  16. /// </summary>
  17. public class Setup : System.Web.UI.Page
  18. {
  19. protected HtmlGenericControl position_set;
  20. protected System.Web.UI.HtmlControls.HtmlGenericControl Span1;
  21. protected System.Web.UI.HtmlControls.HtmlGenericControl department_set;
  22. protected HtmlGenericControl role_set;
  23. protected System.Web.UI.HtmlControls.HtmlGenericControl Span2;
  24. public string ClassID="";
  25. private void Page_Load(object sender, System.EventArgs e)
  26. {
  27. //判断用户权限以正确出现相应界面
  28. string userName;
  29. int classID;//树节点ID
  30. classID = Convert.ToInt32(Request.QueryString["classID"].ToString());
  31. ClassID = classID.ToString();
  32. userName = Request.Cookies["UserName"].Value;
  33. UDS.Components.Staff st = new UDS.Components.Staff();
  34. //检查用户是否有部门管理的权限
  35. if (st.CheckRight(classID,userName,8,true))
  36. position_set.Visible = true;
  37. else
  38. position_set.Visible = true;
  39. //检查用户是否有角色管理的权限
  40. if (st.CheckRight(classID,userName,9,true))
  41. role_set.Visible = true;
  42. else
  43. role_set.Visible = true;
  44. }
  45. #region Web Form Designer generated code
  46. override protected void OnInit(EventArgs e)
  47. {
  48. //
  49. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  50. //
  51. InitializeComponent();
  52. base.OnInit(e);
  53. }
  54. /// <summary>
  55. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  56. /// 此方法的内容。
  57. /// </summary>
  58. private void InitializeComponent()
  59. {    
  60. this.Load += new System.EventHandler(this.Page_Load);
  61. }
  62. #endregion
  63. }
  64. }