ManageBoardMaster.aspx.cs
上传用户:jdb8708888
上传日期:2013-05-29
资源大小:19971k
文件大小:4k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. using UDS.Components;
  13. namespace UDS.SubModule.UnitiveDocument.BBS
  14. {
  15. /// <summary>
  16. /// ManageBoardMaster 的摘要说明。
  17. /// </summary>
  18. public class ManageBoardMaster : System.Web.UI.Page
  19. {
  20. private  int boardid;
  21. protected int classid;
  22. protected System.Web.UI.WebControls.ListBox lbBoardMasterList;
  23. protected System.Web.UI.WebControls.ListBox lbRemainStaff;
  24. protected System.Web.UI.WebControls.Button btn_in;
  25. protected System.Web.UI.WebControls.HyperLink hlk_Back;
  26. protected System.Web.UI.WebControls.Button btn_out;
  27. private void Page_Load(object sender, System.EventArgs e)
  28. {
  29. // 在此处放置用户代码以初始化页面
  30. if(!Page.IsPostBack)
  31. {
  32. string staffids = "";
  33. boardid = (Request.QueryString["BoardID"]==null)?0:Convert.ToInt32(Request.QueryString["BoardID"]);
  34. classid = (Request.QueryString["classID"]==null)?0:Int32.Parse(Request.QueryString["classID"]);
  35. ViewState["boardid"] = boardid;
  36. ViewState["classid"] = classid;
  37. UDS.Components.Staff staff = new UDS.Components.Staff();
  38. BBSClass bbs = new BBSClass();
  39. SqlDataReader dr = null;
  40. SqlDataReader dr1 = null;
  41. DataTable dt = new DataTable();
  42. try
  43. {
  44. dr = bbs.GetBoardMaster();
  45. dt = Tools.ConvertDataReaderToDataTable(dr);
  46. dt.DefaultView.RowFilter = "board_id="+boardid;
  47. lbBoardMasterList.DataSource = dt.DefaultView;
  48. lbBoardMasterList.DataValueField = "staff_id";
  49. lbBoardMasterList.DataTextField  = "realname";
  50. lbBoardMasterList.DataBind();
  51. for(int i=0;i<lbBoardMasterList.Items.Count;i++)
  52. {
  53. staffids += lbBoardMasterList.Items[i].Value + ",";
  54. }
  55. if(staffids.Length!=0)
  56. staffids = staffids.Substring(0,staffids.Length-1);
  57. dr1 = staff.GetRemainStaff(staffids);
  58. lbRemainStaff.DataSource = dr1;
  59. lbRemainStaff.DataValueField = "staff_id";
  60. lbRemainStaff.DataTextField  = "realname";
  61. lbRemainStaff.DataBind();
  62. dr1.Close();
  63. }
  64. catch(Exception ex)
  65. {
  66. UDS.Components.Error.Log(ex.ToString());
  67. Server.Transfer("../../Error.aspx");
  68. }
  69. }
  70. else
  71. {
  72. boardid = Int32.Parse(ViewState["boardid"].ToString());
  73. classid = Int32.Parse(ViewState["classid"].ToString());
  74. }
  75. hlk_Back.DataBind();
  76. }
  77. #region Web Form Designer generated code
  78. override protected void OnInit(EventArgs e)
  79. {
  80. //
  81. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  82. //
  83. InitializeComponent();
  84. base.OnInit(e);
  85. }
  86. /// <summary>
  87. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  88. /// 此方法的内容。
  89. /// </summary>
  90. private void InitializeComponent()
  91. {    
  92. this.btn_in.Click += new System.EventHandler(this.btn_in_Click);
  93. this.btn_out.Click += new System.EventHandler(this.btn_out_Click);
  94. this.Load += new System.EventHandler(this.Page_Load);
  95. }
  96. #endregion
  97. private void btn_in_Click(object sender, System.EventArgs e)
  98. {
  99. BBSClass bbs = new BBSClass();
  100. try
  101. {
  102. //便历listbox得到选中的带成为板主的人员id
  103. for(int i=0;i<lbRemainStaff.Items.Count;i++)
  104. {
  105. if(lbRemainStaff.Items[i].Selected)
  106. {
  107. bbs.AddBoardMaster(boardid,Int32.Parse(lbRemainStaff.Items[i].Value));
  108. }
  109. }
  110. Response.Redirect("ManageBoardMaster.aspx?BoardID="+boardid+"&ClassID="+classid);
  111. }
  112. catch(Exception ex)
  113. {
  114. UDS.Components.Error.Log(ex.ToString());
  115. Server.Transfer("../../Error.aspx");
  116. }
  117. }
  118. private void btn_out_Click(object sender, System.EventArgs e)
  119. {
  120. BBSClass bbs = new BBSClass();
  121. try
  122. {
  123. //便历listbox得到选中的的人员id
  124. for(int i=0;i<lbBoardMasterList.Items.Count;i++)
  125. {
  126. if(lbBoardMasterList.Items[i].Selected)
  127. {
  128. bbs.DelBoardMaster(boardid,Int32.Parse(lbBoardMasterList.Items[i].Value));
  129. }
  130. }
  131. Response.Redirect("ManageBoardMaster.aspx?BoardID="+boardid+"&ClassID="+classid);
  132. }
  133. catch(Exception ex)
  134. {
  135. UDS.Components.Error.Log(ex.ToString());
  136. Server.Transfer("../../Error.aspx");
  137. }
  138. }
  139. }
  140. }