EditOrganization.aspx.cs
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:5k
源码类别:

OA系统

开发平台:

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. namespace OA
  13. {
  14. /// <summary>
  15. /// EditOrganization 的摘要说明。
  16. /// </summary>
  17. public class EditOrganization : System.Web.UI.Page
  18. {
  19. protected System.Data.SqlClient.SqlConnection MyConnection;
  20. protected System.Web.UI.WebControls.TextBox OrganizationName;
  21. protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator2;
  22. protected System.Web.UI.WebControls.TextBox SystemID;
  23. protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
  24. protected System.Web.UI.HtmlControls.HtmlInputButton Send;
  25. protected System.Data.SqlClient.SqlCommand MyCommand;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. if(!IsPostBack)
  29. {
  30. if(Request.QueryString["OrganizationID"]!=null)
  31. {
  32. string SID="";
  33. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  34. MyCommand=new SqlCommand("OrganizationName",MyConnection);
  35. MyCommand.CommandType = CommandType.StoredProcedure;
  36. MyCommand.Parameters.Add(new SqlParameter("@OrganizationID", SqlDbType.Int, 4));
  37. MyCommand.Parameters["@OrganizationID"].Value = Int32.Parse(Request.QueryString["OrganizationID"].ToString());
  38. if(MyConnection.State.ToString()=="Closed")
  39. MyConnection.Open(); 
  40. SqlDataReader myReader =  MyCommand.ExecuteReader();
  41. while(myReader.Read())
  42. {
  43. OrganizationName.Text = myReader["OrganizationName"].ToString().Trim();
  44. SID = myReader["SystemID"].ToString().Trim();
  45. }
  46. myReader.Close();
  47. string [] str = SID.Split(new char[] {','});
  48. string SName="";
  49. for(int i=0; i<str.Length; i++)
  50. {
  51. if(str[i]!="")
  52. {
  53. SqlCommand MyCommand2 = new SqlCommand("SelectSystemName",MyConnection);
  54. MyCommand2.CommandType = CommandType.StoredProcedure;
  55. MyCommand2.Parameters.Add(new SqlParameter("@SystemID", SqlDbType.Int, 4));
  56. MyCommand2.Parameters["@SystemID"].Value = str[i];
  57. if(MyConnection.State.ToString()=="Closed")
  58. MyConnection.Open(); 
  59. SqlDataReader myReader2 =  MyCommand2.ExecuteReader();
  60. while(myReader2.Read())
  61. {
  62. if(myReader2["SystemName"]!=null)
  63. SName += ","+myReader2["SystemName"].ToString()+"("+str[i]+")";
  64. }
  65. myReader2.Close();
  66. MyConnection.Close();
  67. }
  68. }
  69. SystemID.Text = SName.Substring(1);
  70. }
  71. } // 在此处放置用户代码以初始化页面
  72. }
  73. #region Web 窗体设计器生成的代码
  74. override protected void OnInit(EventArgs e)
  75. {
  76. //
  77. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  78. //
  79. InitializeComponent();
  80. base.OnInit(e);
  81. }
  82. /// <summary>
  83. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  84. /// 此方法的内容。
  85. /// </summary>
  86. private void InitializeComponent()
  87. {    
  88. this.Send.ServerClick += new System.EventHandler(this.Send_ServerClick);
  89. this.Load += new System.EventHandler(this.Page_Load);
  90. }
  91. #endregion
  92. private void Send_ServerClick(object sender, System.EventArgs e)
  93. {
  94. string SID = CleanInput1(SystemID.Text.Trim()); 
  95. string [] SI = RemoveDup(SID.Replace("(","").Replace(")","").Split(new char[] {','}));
  96. string S = "";
  97. for(int i=0; i<SI.Length; i++)
  98. {
  99. if(SI[i]!="")
  100. S +=","+SI[i];
  101. }
  102. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  103. MyCommand=new SqlCommand("UpdateOrganization",MyConnection);
  104. MyCommand.CommandType = CommandType.StoredProcedure;
  105. MyCommand.Parameters.Add(new SqlParameter("@OrganizationName", SqlDbType.NVarChar, 50));
  106. MyCommand.Parameters["@OrganizationName"].Value = OrganizationName.Text.Trim();  
  107. MyCommand.Parameters.Add(new SqlParameter("@SystemID",SqlDbType.NVarChar, 50));
  108. MyCommand.Parameters["@SystemID"].Value = S.Substring(1); 
  109. MyCommand.Parameters.Add(new SqlParameter("@OrganizationID", SqlDbType.Int, 4));
  110. MyCommand.Parameters["@OrganizationID"].Value = Int32.Parse(Request.QueryString["OrganizationID"].ToString());
  111. if(MyConnection.State.ToString()=="Closed")
  112. MyConnection.Open();  
  113. MyCommand.ExecuteNonQuery();
  114. MyConnection.Close(); 
  115. Response.Write("<script>opener.location.href=opener.location.href;opener=null;window.close();</"+"script>");
  116. }
  117. public String CleanInput1(string strIn)
  118. {
  119. return System.Text.RegularExpressions.Regex.Replace(strIn, @"[^-9,]", ""); 
  120. }
  121. public static string[] RemoveDup(string[] myData)
  122. {
  123. if (myData.Length > 0)
  124. {
  125. Array.Sort(myData);
  126. int size = 1;
  127. for (int i=1; i<myData.Length; i++)
  128. if (myData[i] != myData[i-1])
  129. size++;
  130. string[] myTempData = new string[size];
  131. int j=0;
  132. myTempData[j++] = myData[0];
  133. for (int i=1; i<myData.Length; i++)
  134. if (myData[i] != myData[i-1])
  135. myTempData[j++] = myData[i];
  136. return myTempData;
  137. }
  138. return myData; 
  139. }
  140. }
  141. }