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

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. /// NewOrganization 的摘要说明。
  16. /// </summary>
  17. public class NewOrganization : 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.RequiredFieldValidator RequiredFieldValidator1;
  23. protected System.Web.UI.HtmlControls.HtmlInputButton Send;
  24. protected System.Web.UI.WebControls.TextBox SystemID;
  25. protected System.Data.SqlClient.SqlCommand MyCommand;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. // 在此处放置用户代码以初始化页面
  29. }
  30. #region Web 窗体设计器生成的代码
  31. override protected void OnInit(EventArgs e)
  32. {
  33. //
  34. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  35. //
  36. InitializeComponent();
  37. base.OnInit(e);
  38. }
  39. /// <summary>
  40. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  41. /// 此方法的内容。
  42. /// </summary>
  43. private void InitializeComponent()
  44. {    
  45. this.Send.ServerClick += new System.EventHandler(this.Send_ServerClick);
  46. this.Load += new System.EventHandler(this.Page_Load);
  47. }
  48. #endregion
  49. private void Send_ServerClick(object sender, System.EventArgs e)
  50. {
  51. string SID = CleanInput1(SystemID.Text.Trim()); 
  52. string [] SI = RemoveDup(SID.Replace("(","").Replace(")","").Split(new char[] {','}));
  53. string S = "";
  54. for(int i=0; i<SI.Length; i++)
  55. {
  56. if(SI[i]!="")
  57. S +=","+SI[i];
  58. }
  59. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  60. MyCommand=new SqlCommand("InsertOrganization",MyConnection);
  61. MyCommand.CommandType = CommandType.StoredProcedure;
  62. MyCommand.Parameters.Add(new SqlParameter("@OrganizationName", SqlDbType.NVarChar, 50));
  63. MyCommand.Parameters["@OrganizationName"].Value = OrganizationName.Text.Trim();  
  64. MyCommand.Parameters.Add(new SqlParameter("@SystemID",SqlDbType.NVarChar, 50));
  65. MyCommand.Parameters["@SystemID"].Value = S.Substring(1); 
  66. if(MyConnection.State.ToString()=="Closed")
  67. MyConnection.Open();  
  68. MyCommand.ExecuteNonQuery();
  69. MyConnection.Close(); 
  70. Response.Write("<script>opener.location.href=opener.location.href;opener=null;window.close();</"+"script>");
  71. }
  72. public String CleanInput1(string strIn)
  73. {
  74. return System.Text.RegularExpressions.Regex.Replace(strIn, @"[^-9,]", ""); 
  75. }
  76. public static string[] RemoveDup(string[] myData)
  77. {
  78. if (myData.Length > 0)
  79. {
  80. Array.Sort(myData);
  81. int size = 1;
  82. for (int i=1; i<myData.Length; i++)
  83. if (myData[i] != myData[i-1])
  84. size++;
  85. string[] myTempData = new string[size];
  86. int j=0;
  87. myTempData[j++] = myData[0];
  88. for (int i=1; i<myData.Length; i++)
  89. if (myData[i] != myData[i-1])
  90. myTempData[j++] = myData[i];
  91. return myTempData;
  92. }
  93. return myData; 
  94. }
  95. }
  96. }