mimagai.aspx.cs
上传用户:clhb88
上传日期:2009-09-26
资源大小:3468k
文件大小:8k
源码类别:

医药行业

开发平台:

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 System.Data.SqlClient;
  12. namespace 医院管理系统
  13. {
  14. /// <summary>
  15. /// mimagai 的摘要说明。
  16. /// </summary>
  17. public class mimagai : System.Web.UI.Page
  18. {
  19. protected System.Data.SqlClient.SqlConnection cnn;
  20. protected System.Data.SqlClient.SqlCommand sqlSelectCommand1;
  21. protected System.Data.SqlClient.SqlCommand sqlInsertCommand1;
  22. protected System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
  23. protected System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
  24. protected System.Data.SqlClient.SqlDataAdapter sda;
  25. protected System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
  26. protected System.Web.UI.WebControls.DataGrid DataGrid1;
  27. protected 医院管理系统.ds1 ds11;
  28. protected System.Data.SqlClient.SqlCommand cmd;
  29. protected System.Web.UI.WebControls.Button Button2;
  30. protected System.Web.UI.WebControls.Button Button1;
  31. protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator3;
  32. protected System.Web.UI.WebControls.DropDownList d1;
  33. protected System.Web.UI.WebControls.CompareValidator CompareValidator1;
  34. protected System.Web.UI.WebControls.TextBox TextBox3;
  35. protected System.Web.UI.WebControls.TextBox tpwd;
  36. protected System.Web.UI.WebControls.Label Label1;
  37. protected System.Web.UI.WebControls.Panel p1;
  38.  Cpass cpa =new Cpass();
  39.     
  40. private void Page_Load(object sender, System.EventArgs e)
  41. {
  42. try
  43. {
  44. string user= Session["usename"].ToString();
  45. string pwd=Session["pwds"].ToString() ; //获得变量值
  46. if(cpa.CH(user, pwd, "后勤服务")=="Norights")//用户名或密码错或无权限
  47. Response.Redirect("index.aspx"); } 
  48. catch{  Response.Redirect("index.aspx");} 
  49. if(!IsPostBack)
  50. {
  51. fills();
  52. }
  53. this.p1.Visible =true;
  54. }
  55. #region Web 窗体设计器生成的代码
  56. override protected void OnInit(EventArgs e)
  57. {
  58. //
  59. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  60. //
  61. InitializeComponent();
  62. base.OnInit(e);
  63. }
  64. /// <summary>
  65. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  66. /// 此方法的内容。
  67. /// </summary>
  68. private void InitializeComponent()
  69. {    
  70. this.cnn = new System.Data.SqlClient.SqlConnection();
  71. this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
  72. this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
  73. this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
  74. this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
  75. this.sda = new System.Data.SqlClient.SqlDataAdapter();
  76. this.ds11 = new 医院管理系统.ds1();
  77. this.cmd = new System.Data.SqlClient.SqlCommand();
  78. ((System.ComponentModel.ISupportInitialize)(this.ds11)).BeginInit();
  79. // 
  80. // cnn
  81. // 
  82. this.cnn.ConnectionString = "workstation id=LYJ805;packet size=4096;integrated security=SSPI;data source=".";p" +
  83. "ersist security info=False;initial catalog=医院管理系统";
  84. // 
  85. // sqlSelectCommand1
  86. // 
  87. this.sqlSelectCommand1.CommandText = "[selall]";
  88. this.sqlSelectCommand1.CommandType = System.Data.CommandType.StoredProcedure;
  89. this.sqlSelectCommand1.Connection = this.cnn;
  90. this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(0)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
  91. // 
  92. // sqlUpdateCommand1
  93. // 
  94. this.sqlUpdateCommand1.CommandText = "[mimagai]";
  95. this.sqlUpdateCommand1.CommandType = System.Data.CommandType.StoredProcedure;
  96. this.sqlUpdateCommand1.Connection = this.cnn;
  97. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(0)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
  98. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@useid", System.Data.SqlDbType.NVarChar, 20));
  99. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@pwd", System.Data.SqlDbType.NVarChar, 20));
  100. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@rights", System.Data.SqlDbType.NVarChar, 40));
  101. // 
  102. // sqlDeleteCommand1
  103. // 
  104. this.sqlDeleteCommand1.CommandText = "[delmima]";
  105. this.sqlDeleteCommand1.CommandType = System.Data.CommandType.StoredProcedure;
  106. this.sqlDeleteCommand1.Connection = this.cnn;
  107. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(0)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
  108. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@num", System.Data.SqlDbType.NVarChar, 20));
  109. // 
  110. // sda
  111. // 
  112. this.sda.DeleteCommand = this.sqlDeleteCommand1;
  113. this.sda.InsertCommand = this.sqlInsertCommand1;
  114. this.sda.SelectCommand = this.sqlSelectCommand1;
  115. this.sda.UpdateCommand = this.sqlUpdateCommand1;
  116. // 
  117. // ds11
  118. // 
  119. this.ds11.DataSetName = "ds1";
  120. this.ds11.Locale = new System.Globalization.CultureInfo("zh-CN");
  121. // 
  122. // cmd
  123. // 
  124. this.cmd.CommandText = "[gai11]";
  125. this.cmd.CommandType = System.Data.CommandType.StoredProcedure;
  126. this.cmd.Connection = this.cnn;
  127. this.cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(0)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
  128. this.cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter("@id", System.Data.SqlDbType.NVarChar, 20));
  129. this.DataGrid1.PageIndexChanged += new System.Web.UI.WebControls.DataGridPageChangedEventHandler(this.DataGrid1_PageIndexChanged);
  130. this.DataGrid1.SelectedIndexChanged += new System.EventHandler(this.DataGrid1_SelectedIndexChanged);
  131. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  132. this.Button2.Click += new System.EventHandler(this.Button2_Click);
  133. this.Load += new System.EventHandler(this.Page_Load);
  134. ((System.ComponentModel.ISupportInitialize)(this.ds11)).EndInit();
  135. }
  136. #endregion
  137. private void Button1_Click(object sender, System.EventArgs e)
  138. {
  139. if(DataGrid1.SelectedIndex==-1)
  140. {
  141. Response.Write("<script language=javascript>alert('你还没选择!');</script>") ;
  142. }
  143. else
  144. {
  145. if(cnn.State==0) cnn.Open();
  146. sda.UpdateCommand.Parameters["@useid"].Value=this.Label1.Text;
  147. sda.UpdateCommand.Parameters["@pwd"].Value =tpwd.Text;
  148. sda.UpdateCommand.Parameters["@rights"].Value =d1.SelectedValue;
  149. sda.UpdateCommand.ExecuteNonQuery();
  150. Response.Write("<script language=javascript>alert('修改成功!');</script>") ;
  151. }
  152. }
  153. private void fills()
  154. {
  155. if(cnn.State==0) cnn.Open();
  156. sda.SelectCommand.ExecuteNonQuery();
  157. ds11.Clear(); 
  158. sda.Fill(ds11); 
  159. cnn.Close();
  160. DataGrid1.DataBind(); 
  161. }
  162. private void DataGrid1_SelectedIndexChanged(object sender, System.EventArgs e)
  163. {
  164. if(cnn.State==0) cnn.Open();
  165. //p1.Visible =true;
  166. cmd.Parameters["@id"].Value=Convert.ToString (DataGrid1.SelectedItem.Cells[0].Text);
  167. SqlDataReader rd=cmd.ExecuteReader();
  168. while (rd.Read())
  169. {
  170. this.Label1.Text =rd.GetValue(0).ToString();
  171. }
  172. }
  173. private void DataGrid1_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
  174. {
  175. DataGrid1.CurrentPageIndex = e.NewPageIndex;
  176. fills();
  177. }
  178. private void Button2_Click(object sender, System.EventArgs e)
  179. {
  180. if(DataGrid1.SelectedIndex==-1)
  181. {
  182. Response.Write("<script language=javascript>alert('你还没选择!');</script>") ;
  183. }
  184. else
  185. {
  186. if(cnn.State==0) cnn.Open();
  187. sda.DeleteCommand.Parameters["@num"].Value=DataGrid1.SelectedItem.Cells[0].Text;
  188. sda.DeleteCommand.ExecuteNonQuery ();
  189. cnn.Close();
  190. fills();
  191. this.DataGrid1.SelectedIndex=-1;
  192. }
  193. }
  194. }
  195. }