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

医药行业

开发平台:

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. namespace 医院管理系统
  12. {
  13. /// <summary>
  14. /// webmenu 的摘要说明。
  15. /// </summary>
  16. public class webmenu : System.Web.UI.Page
  17. {
  18. protected System.Web.UI.WebControls.HyperLink HyperLink1;
  19. protected System.Web.UI.WebControls.HyperLink HyperLink2;
  20. protected System.Web.UI.WebControls.HyperLink HyperLink3;
  21. protected System.Web.UI.WebControls.HyperLink HyperLink4;
  22. protected System.Web.UI.WebControls.Image Image1;
  23. protected System.Web.UI.WebControls.Button Button1;
  24. protected System.Web.UI.WebControls.Button Button2;
  25. protected System.Web.UI.WebControls.Label Label1;
  26. protected System.Data.SqlClient.SqlConnection cnn;
  27. protected System.Data.SqlClient.SqlCommand sqlSelectCommand1;
  28. protected System.Data.SqlClient.SqlCommand sqlInsertCommand1;
  29. protected System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
  30. protected System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
  31. protected System.Data.SqlClient.SqlDataAdapter sda;
  32. protected System.Web.UI.WebControls.TextBox tpwd;
  33. protected System.Web.UI.WebControls.TextBox tpwd1;
  34. protected System.Web.UI.WebControls.CompareValidator CompareValidator1;
  35. protected System.Web.UI.WebControls.Label Label2;
  36. protected System.Web.UI.WebControls.Label Label3;
  37. protected System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
  38.     Cpass cpa =new Cpass();
  39.   private void Page_Load(object sender, System.EventArgs e)
  40. {
  41. try
  42. {
  43. string user= Session["usename"].ToString();
  44. string pwd=Session["pwds"].ToString() ; //获得变量值
  45. if(cpa.CH(user, pwd, "")=="Nopasscheck")//用户名或密码错
  46. Response.Redirect("index.aspx");
  47. }
  48. catch{  Response.Redirect("index.aspx");} 
  49. Label1.Text=Session["usename"].ToString();
  50. }
  51. #region Web 窗体设计器生成的代码
  52. override protected void OnInit(EventArgs e)
  53. {
  54. //
  55. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  56. //
  57. InitializeComponent();
  58. base.OnInit(e);
  59. }
  60. /// <summary>
  61. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  62. /// 此方法的内容。
  63. /// </summary>
  64. private void InitializeComponent()
  65. {    
  66. this.cnn = new System.Data.SqlClient.SqlConnection();
  67. this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
  68. this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
  69. this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
  70. this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
  71. this.sda = new System.Data.SqlClient.SqlDataAdapter();
  72. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  73. // 
  74. // cnn
  75. // 
  76. this.cnn.ConnectionString = "workstation id=LYJ805;packet size=4096;integrated security=SSPI;data source=".";p" +
  77. "ersist security info=False;initial catalog=医院管理系统";
  78. // 
  79. // sqlUpdateCommand1
  80. // 
  81. this.sqlUpdateCommand1.CommandText = "[update1]";
  82. this.sqlUpdateCommand1.CommandType = System.Data.CommandType.StoredProcedure;
  83. this.sqlUpdateCommand1.Connection = this.cnn;
  84. 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));
  85. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@useid", System.Data.SqlDbType.NVarChar, 20));
  86. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@pwd", System.Data.SqlDbType.NVarChar, 20));
  87. // 
  88. // sda
  89. // 
  90. this.sda.DeleteCommand = this.sqlDeleteCommand1;
  91. this.sda.InsertCommand = this.sqlInsertCommand1;
  92. this.sda.SelectCommand = this.sqlSelectCommand1;
  93. this.sda.UpdateCommand = this.sqlUpdateCommand1;
  94. this.Load += new System.EventHandler(this.Page_Load);
  95. }
  96. #endregion
  97. private void Button1_Click(object sender, System.EventArgs e)
  98. {
  99. //Label1.Text=Session["usename"].ToString();
  100. if(cnn.State==0) cnn.Open();
  101. sda.UpdateCommand.Parameters["@useid"].Value=this.Label1.Text;
  102. sda.UpdateCommand.Parameters["@pwd"].Value =tpwd.Text;
  103. sda.UpdateCommand.ExecuteNonQuery();
  104. Response.Write("<script language=javascript>alert('修改成功!');</script>") ;
  105. }
  106. }
  107. }